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

Side by Side Diff: content/browser/speech/speech_recognizer_impl.cc

Issue 758463003: Removes unnecessary include (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "content/browser/speech/speech_recognizer_impl.h" 5 #include "content/browser/speech/speech_recognizer_impl.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "content/browser/browser_main_loop.h" 10 #include "content/browser/browser_main_loop.h"
11 #include "content/browser/media/media_internals.h" 11 #include "content/browser/media/media_internals.h"
12 #include "content/browser/speech/audio_buffer.h" 12 #include "content/browser/speech/audio_buffer.h"
13 #include "content/browser/speech/google_one_shot_remote_engine.h" 13 #include "content/browser/speech/google_one_shot_remote_engine.h"
14 #include "content/public/browser/speech_recognition_event_listener.h" 14 #include "content/public/browser/speech_recognition_event_listener.h"
15 #include "media/base/audio_converter.h" 15 #include "media/base/audio_converter.h"
16 #include "net/url_request/url_request_context_getter.h"
17 16
18 #if defined(OS_WIN) 17 #if defined(OS_WIN)
19 #include "media/audio/win/core_audio_util_win.h" 18 #include "media/audio/win/core_audio_util_win.h"
20 #endif 19 #endif
21 20
22 using media::AudioBus; 21 using media::AudioBus;
23 using media::AudioConverter; 22 using media::AudioConverter;
24 using media::AudioInputController; 23 using media::AudioInputController;
25 using media::AudioManager; 24 using media::AudioManager;
26 using media::AudioParameters; 25 using media::AudioParameters;
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 SpeechRecognizerImpl::FSMEventArgs::FSMEventArgs(FSMEvent event_value) 813 SpeechRecognizerImpl::FSMEventArgs::FSMEventArgs(FSMEvent event_value)
815 : event(event_value), 814 : event(event_value),
816 audio_data(NULL), 815 audio_data(NULL),
817 engine_error(SPEECH_RECOGNITION_ERROR_NONE) { 816 engine_error(SPEECH_RECOGNITION_ERROR_NONE) {
818 } 817 }
819 818
820 SpeechRecognizerImpl::FSMEventArgs::~FSMEventArgs() { 819 SpeechRecognizerImpl::FSMEventArgs::~FSMEventArgs() {
821 } 820 }
822 821
823 } // namespace content 822 } // namespace content
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