Home
last modified time | relevance | path

Searched refs:SpeechInputBubbleBase (Results 1 – 8 of 8) sorted by relevance

/external/chromium/chrome/browser/speech/
Dspeech_input_bubble.cc119 SpeechInputBubbleBase::SpeechInputBubbleBase(TabContents* tab_contents) in SpeechInputBubbleBase() function in SpeechInputBubbleBase
136 SpeechInputBubbleBase::~SpeechInputBubbleBase() { in ~SpeechInputBubbleBase()
142 void SpeechInputBubbleBase::SetWarmUpMode() { in SetWarmUpMode()
150 void SpeechInputBubbleBase::DoWarmingUpAnimationStep() { in DoWarmingUpAnimationStep()
155 &SpeechInputBubbleBase::DoWarmingUpAnimationStep), in DoWarmingUpAnimationStep()
162 void SpeechInputBubbleBase::SetRecordingMode() { in SetRecordingMode()
169 void SpeechInputBubbleBase::SetRecognizingMode() { in SetRecognizingMode()
176 void SpeechInputBubbleBase::DoRecognizingAnimationStep() { in DoRecognizingAnimationStep()
183 &SpeechInputBubbleBase::DoRecognizingAnimationStep), in DoRecognizingAnimationStep()
187 void SpeechInputBubbleBase::SetMessage(const string16& text) { in SetMessage()
[all …]
Dspeech_input_bubble_views.cc43 void UpdateLayout(SpeechInputBubbleBase::DisplayMode mode,
66 SpeechInputBubbleBase::DisplayMode display_mode_;
74 display_mode_(SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP), in ContentView()
116 void ContentView::UpdateLayout(SpeechInputBubbleBase::DisplayMode mode, in UpdateLayout()
120 bool is_message = (mode == SpeechInputBubbleBase::DISPLAY_MODE_MESSAGE); in UpdateLayout()
125 cancel_->SetVisible(mode != SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP); in UpdateLayout()
126 heading_->SetVisible(mode == SpeechInputBubbleBase::DISPLAY_MODE_RECORDING); in UpdateLayout()
228 if (display_mode_ == SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP) in Layout()
250 : public SpeechInputBubbleBase,
291 : SpeechInputBubbleBase(tab_contents), in SpeechInputBubbleImpl()
Dspeech_input_bubble.h121 class SpeechInputBubbleBase : public SpeechInputBubble {
132 explicit SpeechInputBubbleBase(TabContents* tab_contents);
133 virtual ~SpeechInputBubbleBase();
170 ScopedRunnableMethodFactory<SpeechInputBubbleBase> task_factory_;
Dspeech_input_bubble_controller_unittest.cc20 class MockSpeechInputBubble : public SpeechInputBubbleBase {
31 : SpeechInputBubbleBase(tab_contents) { in MockSpeechInputBubble()
Dspeech_input_bubble_mac.mm20 class SpeechInputBubbleImpl : public SpeechInputBubbleBase {
40 : SpeechInputBubbleBase(tab_contents),
Dspeech_input_bubble_gtk.cc35 : public SpeechInputBubbleBase,
76 : SpeechInputBubbleBase(tab_contents), in SpeechInputBubbleGtk()
/external/chromium/chrome/browser/ui/cocoa/
Dspeech_input_window_controller.mm39 displayMode_ = SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP;
80 SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP);
165 if (displayMode_ == SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP)
173 - (void)updateLayout:(SpeechInputBubbleBase::DisplayMode)mode
181 BOOL is_message = (mode == SpeechInputBubbleBase::DISPLAY_MODE_MESSAGE);
182 BOOL is_recording = (mode == SpeechInputBubbleBase::DISPLAY_MODE_RECORDING);
183 BOOL is_warm_up = (mode == SpeechInputBubbleBase::DISPLAY_MODE_WARM_UP);
Dspeech_input_window_controller.h19 SpeechInputBubbleBase::DisplayMode displayMode_;
44 - (void)updateLayout:(SpeechInputBubbleBase::DisplayMode)mode