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

Unified Diff: chrome/browser/speech/speech_input_manager.cc

Issue 3035035: Adds chromium side plumbing to pass speech input calls back and forth with WebKit. (Closed)
Patch Set: Addressed all comments. Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/speech/speech_input_manager.cc
diff --git a/chrome/browser/speech/speech_input_manager.cc b/chrome/browser/speech/speech_input_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1b3881e442012e696e64365105ff5dc3dc213e2e
--- /dev/null
+++ b/chrome/browser/speech/speech_input_manager.cc
@@ -0,0 +1,14 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/speech/speech_input_manager.h"
+
+namespace speech_input {
+
+SpeechInputManager* SpeechInputManager::Create(Listener* listener) {
+ // TODO(satish): Implement a real speech input manager.
+ return NULL;
+}
+
+} // namespace speech_input

Powered by Google App Engine
This is Rietveld 408576698