summaryrefslogtreecommitdiffstats
path: root/WebCore/page/Page.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/Page.h')
-rw-r--r--WebCore/page/Page.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/page/Page.h b/WebCore/page/Page.h
index 56a25eb..8599a83 100644
--- a/WebCore/page/Page.h
+++ b/WebCore/page/Page.h
@@ -70,6 +70,7 @@ namespace WebCore {
class VisibleSelection;
class SelectionController;
class Settings;
+ class SpeechInputClient;
#if ENABLE(DOM_STORAGE)
class StorageNamespace;
@@ -152,6 +153,10 @@ namespace WebCore {
#if ENABLE(DEVICE_ORIENTATION)
DeviceOrientationController* deviceOrientationController() const { return m_deviceOrientationController.get(); }
#endif
+#if ENABLE(INPUT_SPEECH)
+ void setSpeechInputClient(SpeechInputClient* client) { m_speechInputClient = client; }
+ SpeechInputClient* speechInputClient() const { return m_speechInputClient; }
+#endif
Settings* settings() const { return m_settings.get(); }
ProgressTracker* progress() const { return m_progress.get(); }
@@ -269,6 +274,9 @@ namespace WebCore {
#if ENABLE(DEVICE_ORIENTATION)
OwnPtr<DeviceOrientationController> m_deviceOrientationController;
#endif
+#if ENABLE(INPUT_SPEECH)
+ SpeechInputClient* m_speechInputClient;
+#endif
OwnPtr<Settings> m_settings;
OwnPtr<ProgressTracker> m_progress;