Home | History | Annotate | Download | only in speech

Lines Matching refs:caller_id

27 void SpeechInputBubbleController::CreateBubble(int caller_id,
35 caller_id, render_process_id, render_view_id,
43 DCHECK_EQ(0u, bubbles_.count(caller_id));
49 bubbles_[caller_id] = bubble;
51 UpdateTabContentsSubscription(caller_id, BUBBLE_ADDED);
54 void SpeechInputBubbleController::CloseBubble(int caller_id) {
55 ProcessRequestInUiThread(caller_id, REQUEST_CLOSE, string16(), 0, 0);
58 void SpeechInputBubbleController::SetBubbleWarmUpMode(int caller_id) {
59 ProcessRequestInUiThread(caller_id, REQUEST_SET_WARM_UP_MODE,
63 void SpeechInputBubbleController::SetBubbleRecordingMode(int caller_id) {
64 ProcessRequestInUiThread(caller_id, REQUEST_SET_RECORDING_MODE,
68 void SpeechInputBubbleController::SetBubbleRecognizingMode(int caller_id) {
69 ProcessRequestInUiThread(caller_id, REQUEST_SET_RECOGNIZING_MODE,
73 void SpeechInputBubbleController::SetBubbleInputVolume(int caller_id,
76 ProcessRequestInUiThread(caller_id, REQUEST_SET_INPUT_VOLUME, string16(),
80 void SpeechInputBubbleController::SetBubbleMessage(int caller_id,
82 ProcessRequestInUiThread(caller_id, REQUEST_SET_MESSAGE, text, 0, 0);
86 int caller_id, ManageSubscriptionAction action) {
92 TabContents* tab_contents = bubbles_[caller_id]->tab_contents();
96 iter->first != caller_id) {
140 int caller_id, RequestType type, const string16& text, float volume,
145 caller_id, type, text, volume, noise_volume));
151 if (!bubbles_.count(caller_id))
157 if (current_bubble_caller_id_ && current_bubble_caller_id_ != caller_id)
159 current_bubble_caller_id_ = caller_id;
162 SpeechInputBubble* bubble = bubbles_[caller_id];
180 if (current_bubble_caller_id_ == caller_id)
182 UpdateTabContentsSubscription(caller_id, BUBBLE_REMOVED);
184 bubbles_.erase(caller_id);
224 int caller_id, SpeechInputBubble::Button button) {
225 delegate_->InfoBubbleButtonClicked(caller_id, button);
228 void SpeechInputBubbleController::InvokeDelegateFocusChanged(int caller_id) {
229 delegate_->InfoBubbleFocusChanged(caller_id);