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

Unified Diff: chrome/browser/ui/app_list/speech_recognizer.h

Issue 676593003: Implement native speech recognition for the launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass in WeakPtr<Delegate>. Created 6 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/ui/app_list/speech_recognizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/app_list/speech_recognizer.h
diff --git a/chrome/browser/ui/app_list/speech_recognizer.h b/chrome/browser/ui/app_list/speech_recognizer.h
new file mode 100644
index 0000000000000000000000000000000000000000..353608f9ff81c4f989550bbbac8a7777087b6563
--- /dev/null
+++ b/chrome/browser/ui/app_list/speech_recognizer.h
@@ -0,0 +1,45 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_BROWSER_UI_APP_LIST_SPEECH_RECOGNIZER_H_
+#define CHROME_BROWSER_UI_APP_LIST_SPEECH_RECOGNIZER_H_
+
+#include <string>
+
+#include "base/memory/weak_ptr.h"
+
+namespace net {
+class URLRequestContextGetter;
+}
+
+namespace app_list {
+
+class SpeechRecognizerDelegate;
+
+// SpeechRecognizer is a wrapper around the speech recognition engine that
+// simplifies its use from the UI thread. This class handles all setup/shutdown,
+// collection of results, error cases, and threading.
+class SpeechRecognizer {
+ public:
+ SpeechRecognizer(const base::WeakPtr<SpeechRecognizerDelegate>& delegate,
+ net::URLRequestContextGetter* url_request_context_getter,
+ const std::string& locale);
+ ~SpeechRecognizer();
+
+ // Start/stop the speech recognizer. Must be called on the UI thread.
+ void Start();
+ void Stop();
+
+ private:
+ class EventListener;
+
+ base::WeakPtr<SpeechRecognizerDelegate> delegate_;
+ scoped_refptr<EventListener> speech_event_listener_;
+
+ DISALLOW_COPY_AND_ASSIGN(SpeechRecognizer);
+};
+
+} // namespace app_list
+
+#endif // CHROME_BROWSER_UI_APP_LIST_SPEECH_RECOGNIZER_H_
« no previous file with comments | « no previous file | chrome/browser/ui/app_list/speech_recognizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698