blob: 51ae04ce92edd03ed39730909504c99e97ad1eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright (c) 2010 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_SPEECH_INPUT_DISPATCHER_HOST_H_
#define CHROME_BROWSER_SPEECH_SPEECH_INPUT_DISPATCHER_HOST_H_
#include "base/scoped_ptr.h"
#include "chrome/browser/browser_message_filter.h"
#include "chrome/browser/speech/speech_input_manager.h"
namespace speech_input {
// SpeechInputDispatcherHost is a delegate for Speech API messages used by
// RenderMessageFilter.
// It's the complement of SpeechInputDispatcher (owned by RenderView).
class SpeechInputDispatcherHost : public BrowserMessageFilter,
public SpeechInputManager::Delegate {
public:
class SpeechInputCallers;
explicit SpeechInputDispatcherHost(int render_process_id);
// SpeechInputManager::Delegate methods.
virtual void SetRecognitionResult(int caller_id,
const SpeechInputResultArray& result);
virtual void DidCompleteRecording(int caller_id);
virtual void DidCompleteRecognition(int caller_id);
// BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok);
// Singleton accessor setter useful for tests.
static void set_manager_accessor(SpeechInputManager::AccessorMethod* method) {
manager_accessor_ = method;
}
private:
virtual ~SpeechInputDispatcherHost();
void OnStartRecognition(int render_view_id, int request_id,
const gfx::Rect& element_rect,
const std::string& language,
const std::string& grammar);
void OnCancelRecognition(int render_view_id, int request_id);
void OnStopRecording(int render_view_id, int request_id);
// Returns the speech input manager to forward events to, creating one if
// needed.
SpeechInputManager* manager();
int render_process_id_;
static SpeechInputManager::AccessorMethod* manager_accessor_;
DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcherHost);
};
} // namespace speech_input
#endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_DISPATCHER_HOST_H_
|