| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 56d8549a41cd985ee3057693b9864415522704e1..80ddbdf2c4dac9501574f151a16ee62accc2ced7 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -33,6 +33,7 @@
|
| #include "content/browser/renderer_host/media/audio_mirroring_manager.h"
|
| #include "content/browser/renderer_host/media/media_stream_manager.h"
|
| #include "content/browser/speech/speech_recognition_manager_impl.h"
|
| +#include "content/browser/speech/speech_recognizer_impl_android.h"
|
| #include "content/browser/tracing/trace_controller_impl.h"
|
| #include "content/browser/webui/content_web_ui_controller_factory.h"
|
| #include "content/browser/webui/url_data_manager.h"
|
| @@ -461,6 +462,10 @@ void BrowserMainLoop::MainMessageLoopStart() {
|
| TRACE_EVENT0("startup", "BrowserMainLoop::Subsystem:DataFetcher")
|
| DataFetcherImplAndroid::Init(base::android::AttachCurrentThread());
|
| }
|
| + {
|
| + TRACE_EVENT0("startup", "BrowserMainLoop::Subsystem:SpeechRecognizer")
|
| + SpeechRecognizerImplAndroid::Init(base::android::AttachCurrentThread());
|
| + }
|
| #endif
|
|
|
| if (parsed_command_line_.HasSwitch(switches::kMemoryMetrics)) {
|
|
|