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

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

Issue 9972011: Speech refactoring: Reimplemented SpeechRecognitionManagerImpl as a FSM. (CL1.7) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Satish review. Created 8 years, 8 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 | Annotate | Revision Log
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 "chrome/browser/speech/speech_recognition_bubble_controller.h" 10 #include "chrome/browser/speech/speech_recognition_bubble_controller.h"
11 #include "content/public/browser/speech_recognition_manager_delegate.h" 11 #include "content/public/browser/speech_recognition_manager_delegate.h"
12 12
13 namespace base {
14 class WaitableEvent;
15 }
16
13 namespace speech { 17 namespace speech {
14 18
15 // This is Chrome's implementation of the SpeechRecognitionManager interface. 19 // This is Chrome's implementation of the SpeechRecognitionManager interface.
16 // This class is a singleton and accessed via the Get method. 20 // This class is a singleton and accessed via the Get method.
17 class ChromeSpeechRecognitionManagerDelegate 21 class ChromeSpeechRecognitionManagerDelegate
18 : NON_EXPORTED_BASE(public content::SpeechRecognitionManagerDelegate), 22 : NON_EXPORTED_BASE(public content::SpeechRecognitionManagerDelegate),
19 public SpeechRecognitionBubbleControllerDelegate { 23 public SpeechRecognitionBubbleControllerDelegate {
20 public: 24 public:
21 ChromeSpeechRecognitionManagerDelegate(); 25 ChromeSpeechRecognitionManagerDelegate();
22 virtual ~ChromeSpeechRecognitionManagerDelegate(); 26 virtual ~ChromeSpeechRecognitionManagerDelegate();
23 27
24 // SpeechRecognitionBubbleControllerDelegate methods. 28 // SpeechRecognitionBubbleControllerDelegate methods.
25 virtual void InfoBubbleButtonClicked( 29 virtual void InfoBubbleButtonClicked(
26 int session_id, SpeechRecognitionBubble::Button button) OVERRIDE; 30 int session_id, SpeechRecognitionBubble::Button button) OVERRIDE;
27 virtual void InfoBubbleFocusChanged(int session_id) OVERRIDE; 31 virtual void InfoBubbleFocusChanged(int session_id) OVERRIDE;
28 32
29 protected: 33 protected:
30 // SpeechRecognitionManagerDelegate methods. 34 // SpeechRecognitionManagerDelegate methods.
31 virtual void GetRequestInfo(bool* can_report_metrics, 35 virtual void GetDiagnosticInformation(bool* can_report_metrics,
32 std::string* request_info) OVERRIDE; 36 std::string* hardware_info) OVERRIDE;
33 virtual void ShowRecognitionRequested(int session_id, 37 virtual bool IsRecognitionAllowed(int session_id) OVERRIDE;
34 int render_process_id, 38 virtual void ShowRecognitionRequested(int session_id) OVERRIDE;
35 int render_view_id,
36 const gfx::Rect& element_rect) OVERRIDE;
37 virtual void ShowWarmUp(int session_id) OVERRIDE; 39 virtual void ShowWarmUp(int session_id) OVERRIDE;
38 virtual void ShowRecognizing(int session_id) OVERRIDE; 40 virtual void ShowRecognizing(int session_id) OVERRIDE;
39 virtual void ShowRecording(int session_id) OVERRIDE; 41 virtual void ShowRecording(int session_id) OVERRIDE;
40 virtual void ShowInputVolume(int session_id, 42 virtual void ShowInputVolume(int session_id,
41 float volume, 43 float volume,
42 float noise_volume) OVERRIDE; 44 float noise_volume) OVERRIDE;
43 virtual void ShowMicError(int session_id, 45 virtual void ShowError(int session_id,
44 MicError error) OVERRIDE; 46 const content::SpeechRecognitionError& error) OVERRIDE;
45 virtual void ShowRecognizerError(
46 int session_id, content::SpeechRecognitionErrorCode error) OVERRIDE;
47 virtual void DoClose(int session_id) OVERRIDE; 47 virtual void DoClose(int session_id) OVERRIDE;
48 48
49 private: 49 private:
50 class OptionalRequestInfo; 50 class OptionalRequestInfo;
51 51
52 static void CheckRenderViewType(int render_process_id, int render_view_id,
Satish 2012/04/23 10:25:17 Use a single parameter per line for such long decl
Primiano Tucci (use gerrit) 2012/04/23 12:52:25 Done.
53 bool* result, base::WaitableEvent* event);
54
52 scoped_refptr<SpeechRecognitionBubbleController> bubble_controller_; 55 scoped_refptr<SpeechRecognitionBubbleController> bubble_controller_;
53 scoped_refptr<OptionalRequestInfo> optional_request_info_; 56 scoped_refptr<OptionalRequestInfo> optional_request_info_;
54 57
55 DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionManagerDelegate); 58 DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionManagerDelegate);
56 }; 59 };
57 60
58 } // namespace speech 61 } // namespace speech
59 62
60 #endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ 63 #endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698