Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(868)

Side by Side Diff: chrome/browser/speech/speech_input_manager.cc

Issue 6050016: Fix official chrome linux builder (missing include). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/speech/speech_input_manager.h" 5 #include "chrome/browser/speech/speech_input_manager.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/lazy_instance.h"
12 #include "base/lock.h" 13 #include "base/lock.h"
13 #include "base/ref_counted.h" 14 #include "base/ref_counted.h"
14 #include "base/lazy_instance.h"
15 #include "base/threading/thread_restrictions.h" 15 #include "base/threading/thread_restrictions.h"
16 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
17 #include "chrome/browser/browser_thread.h" 17 #include "chrome/browser/browser_thread.h"
18 #include "chrome/common/chrome_switches.h" 18 #include "chrome/browser/platform_util.h"
19 #include "chrome/browser/prefs/pref_service.h" 19 #include "chrome/browser/prefs/pref_service.h"
20 #include "chrome/browser/speech/speech_input_bubble_controller.h" 20 #include "chrome/browser/speech/speech_input_bubble_controller.h"
21 #include "chrome/browser/speech/speech_recognizer.h" 21 #include "chrome/browser/speech/speech_recognizer.h"
22 #include "chrome/browser/tab_contents/infobar_delegate.h" 22 #include "chrome/browser/tab_contents/infobar_delegate.h"
23 #include "chrome/browser/tab_contents/tab_util.h" 23 #include "chrome/browser/tab_contents/tab_util.h"
24 #include "chrome/common/chrome_switches.h"
24 #include "chrome/common/pref_names.h" 25 #include "chrome/common/pref_names.h"
25 #include "grit/generated_resources.h" 26 #include "grit/generated_resources.h"
26 #include "media/audio/audio_manager.h" 27 #include "media/audio/audio_manager.h"
27 28
28 #if defined(OS_WIN) 29 #if defined(OS_WIN)
29 #include "chrome/browser/browser_process.h" 30 #include "chrome/browser/browser_process.h"
30 #include "chrome/installer/util/wmi.h" 31 #include "chrome/installer/util/wmi.h"
31 #endif 32 #endif
32 33
33 namespace { 34 namespace {
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 // to the user, abort it since user has switched focus. Otherwise 355 // to the user, abort it since user has switched focus. Otherwise
355 // recognition has started and keep that going so user can start speaking to 356 // recognition has started and keep that going so user can start speaking to
356 // another element while this gets the results in parallel. 357 // another element while this gets the results in parallel.
357 if (recording_caller_id_ == caller_id || !requests_[caller_id].is_active) { 358 if (recording_caller_id_ == caller_id || !requests_[caller_id].is_active) {
358 CancelRecognitionAndInformDelegate(caller_id); 359 CancelRecognitionAndInformDelegate(caller_id);
359 } 360 }
360 } 361 }
361 } 362 }
362 363
363 } // namespace speech_input 364 } // namespace speech_input
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698