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

Side by Side Diff: chrome/browser/speech/chrome_speech_recognition_manager_delegate.h

Issue 661423008: Standardize usage of virtual/override/final in chrome/browser/speech (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
6 #define CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ 6 #define CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "content/public/browser/speech_recognition_event_listener.h" 10 #include "content/public/browser/speech_recognition_event_listener.h"
11 #include "content/public/browser/speech_recognition_manager_delegate.h" 11 #include "content/public/browser/speech_recognition_manager_delegate.h"
12 #include "content/public/browser/speech_recognition_session_config.h" 12 #include "content/public/browser/speech_recognition_session_config.h"
13 13
14 namespace speech { 14 namespace speech {
15 15
16 // This is Chrome's implementation of the SpeechRecognitionManagerDelegate 16 // This is Chrome's implementation of the SpeechRecognitionManagerDelegate
17 // interface. 17 // interface.
18 class ChromeSpeechRecognitionManagerDelegate 18 class ChromeSpeechRecognitionManagerDelegate
19 : public content::SpeechRecognitionManagerDelegate, 19 : public content::SpeechRecognitionManagerDelegate,
20 public content::SpeechRecognitionEventListener { 20 public content::SpeechRecognitionEventListener {
21 public: 21 public:
22 ChromeSpeechRecognitionManagerDelegate(); 22 ChromeSpeechRecognitionManagerDelegate();
23 virtual ~ChromeSpeechRecognitionManagerDelegate(); 23 ~ChromeSpeechRecognitionManagerDelegate() override;
24 24
25 protected: 25 protected:
26 // SpeechRecognitionEventListener methods. 26 // SpeechRecognitionEventListener methods.
27 virtual void OnRecognitionStart(int session_id) override; 27 void OnRecognitionStart(int session_id) override;
28 virtual void OnAudioStart(int session_id) override; 28 void OnAudioStart(int session_id) override;
29 virtual void OnEnvironmentEstimationComplete(int session_id) override; 29 void OnEnvironmentEstimationComplete(int session_id) override;
30 virtual void OnSoundStart(int session_id) override; 30 void OnSoundStart(int session_id) override;
31 virtual void OnSoundEnd(int session_id) override; 31 void OnSoundEnd(int session_id) override;
32 virtual void OnAudioEnd(int session_id) override; 32 void OnAudioEnd(int session_id) override;
33 virtual void OnRecognitionEnd(int session_id) override; 33 void OnRecognitionEnd(int session_id) override;
34 virtual void OnRecognitionResults( 34 void OnRecognitionResults(
35 int session_id, const content::SpeechRecognitionResults& result) override; 35 int session_id,
36 virtual void OnRecognitionError( 36 const content::SpeechRecognitionResults& result) override;
37 int session_id, const content::SpeechRecognitionError& error) override; 37 void OnRecognitionError(
38 virtual void OnAudioLevelsChange(int session_id, float volume, 38 int session_id,
39 float noise_volume) override; 39 const content::SpeechRecognitionError& error) override;
40 void OnAudioLevelsChange(int session_id,
41 float volume,
42 float noise_volume) override;
40 43
41 // SpeechRecognitionManagerDelegate methods. 44 // SpeechRecognitionManagerDelegate methods.
42 virtual void GetDiagnosticInformation(bool* can_report_metrics, 45 void GetDiagnosticInformation(bool* can_report_metrics,
43 std::string* hardware_info) override; 46 std::string* hardware_info) override;
44 virtual void CheckRecognitionIsAllowed( 47 void CheckRecognitionIsAllowed(
45 int session_id, 48 int session_id,
46 base::Callback<void(bool ask_user, bool is_allowed)> callback) override; 49 base::Callback<void(bool ask_user, bool is_allowed)> callback) override;
47 virtual content::SpeechRecognitionEventListener* GetEventListener() override; 50 content::SpeechRecognitionEventListener* GetEventListener() override;
48 virtual bool FilterProfanities(int render_process_id) override; 51 bool FilterProfanities(int render_process_id) override;
49 52
50 // Callback called by |tab_watcher_| on the IO thread to signal tab closure. 53 // Callback called by |tab_watcher_| on the IO thread to signal tab closure.
51 virtual void TabClosedCallback(int render_process_id, int render_view_id); 54 virtual void TabClosedCallback(int render_process_id, int render_view_id);
52 55
53 private: 56 private:
54 class OptionalRequestInfo; 57 class OptionalRequestInfo;
55 class TabWatcher; 58 class TabWatcher;
56 59
57 // Checks for VIEW_TYPE_TAB_CONTENTS host in the UI thread and notifies back 60 // Checks for VIEW_TYPE_TAB_CONTENTS host in the UI thread and notifies back
58 // the result in the IO thread through |callback|. 61 // the result in the IO thread through |callback|.
59 static void CheckRenderViewType( 62 static void CheckRenderViewType(
60 base::Callback<void(bool ask_user, bool is_allowed)> callback, 63 base::Callback<void(bool ask_user, bool is_allowed)> callback,
61 int render_process_id, 64 int render_process_id,
62 int render_view_id); 65 int render_view_id);
63 66
64 scoped_refptr<OptionalRequestInfo> optional_request_info_; 67 scoped_refptr<OptionalRequestInfo> optional_request_info_;
65 scoped_refptr<TabWatcher> tab_watcher_; 68 scoped_refptr<TabWatcher> tab_watcher_;
66 69
67 DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionManagerDelegate); 70 DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionManagerDelegate);
68 }; 71 };
69 72
70 } // namespace speech 73 } // namespace speech
71 74
72 #endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ 75 #endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698