| Index: chrome/browser/speech/chrome_speech_recognition_manager_delegate.h
|
| diff --git a/chrome/browser/speech/chrome_speech_recognition_manager_delegate.h b/chrome/browser/speech/chrome_speech_recognition_manager_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cf4e7dbd0d251d9cdc00e60d2082e0ad7fd9be45
|
| --- /dev/null
|
| +++ b/chrome/browser/speech/chrome_speech_recognition_manager_delegate.h
|
| @@ -0,0 +1,60 @@
|
| +// Copyright (c) 2012 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_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
| +#define CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "base/memory/ref_counted.h"
|
| +#include "chrome/browser/speech/speech_recognition_bubble_controller.h"
|
| +#include "content/public/browser/speech_recognition_manager_delegate.h"
|
| +
|
| +namespace speech {
|
| +
|
| +// This is Chrome's implementation of the SpeechRecognitionManager interface.
|
| +// This class is a singleton and accessed via the Get method.
|
| +class ChromeSpeechRecognitionManagerDelegate
|
| + : NON_EXPORTED_BASE(public content::SpeechRecognitionManagerDelegate),
|
| + public SpeechRecognitionBubbleControllerDelegate {
|
| + public:
|
| + ChromeSpeechRecognitionManagerDelegate();
|
| + virtual ~ChromeSpeechRecognitionManagerDelegate();
|
| +
|
| + // SpeechRecognitionBubbleControllerDelegate methods.
|
| + virtual void InfoBubbleButtonClicked(
|
| + int caller_id, SpeechRecognitionBubble::Button button) OVERRIDE;
|
| + virtual void InfoBubbleFocusChanged(int caller_id) OVERRIDE;
|
| +
|
| + protected:
|
| + // SpeechRecognitionManagerDelegate methods.
|
| + virtual void GetRequestInfo(bool* can_report_metrics,
|
| + std::string* request_info) OVERRIDE;
|
| + virtual void ShowRecognitionRequested(int caller_id,
|
| + int render_process_id,
|
| + int render_view_id,
|
| + const gfx::Rect& element_rect) OVERRIDE;
|
| + virtual void ShowWarmUp(int caller_id) OVERRIDE;
|
| + virtual void ShowRecognizing(int caller_id) OVERRIDE;
|
| + virtual void ShowRecording(int caller_id) OVERRIDE;
|
| + virtual void ShowInputVolume(int caller_id,
|
| + float volume,
|
| + float noise_volume) OVERRIDE;
|
| + virtual void ShowMicError(int caller_id,
|
| + MicError error) OVERRIDE;
|
| + virtual void ShowRecognizerError(
|
| + int caller_id, content::SpeechRecognitionErrorCode error) OVERRIDE;
|
| + virtual void DoClose(int caller_id) OVERRIDE;
|
| +
|
| + private:
|
| + class OptionalRequestInfo;
|
| +
|
| + scoped_refptr<SpeechRecognitionBubbleController> bubble_controller_;
|
| + scoped_refptr<OptionalRequestInfo> optional_request_info_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionManagerDelegate);
|
| +};
|
| +
|
| +} // namespace speech
|
| +
|
| +#endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
|
|