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

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: Remove refcount and better use WeakPtr. 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
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..b406a69c757ef4cdce8bb856c106cca7d450e718
--- /dev/null
+++ b/chrome/browser/ui/app_list/speech_recognizer.h
@@ -0,0 +1,48 @@
+// 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(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;
+
+ SpeechRecognizerDelegate* delegate_; // Not owned.
Lei Zhang 2014/11/05 03:44:38 Can you just use save the content::WebContents* in
Anand Mistry (off Chromium) 2014/11/05 04:44:11 No, because it might change. However, the current
+ scoped_refptr<EventListener> speech_event_listener_;
+
+ // Weak pointer to pass to EventListener.
+ base::WeakPtrFactory<SpeechRecognizerDelegate> delegate_weak_factory_;
Lei Zhang 2014/11/05 03:44:38 The delegate should have its own WeakPtrFactory()
Anand Mistry (off Chromium) 2014/11/05 04:44:11 Done.
+
+ 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') | chrome/browser/ui/app_list/speech_recognizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698