Index: content/browser/renderer_host/test_render_view_host.h |
=================================================================== |
--- content/browser/renderer_host/test_render_view_host.h (revision 149502) |
+++ content/browser/renderer_host/test_render_view_host.h (working copy) |
@@ -5,6 +5,9 @@ |
#ifndef CONTENT_BROWSER_RENDERER_HOST_TEST_RENDER_VIEW_HOST_H_ |
#define CONTENT_BROWSER_RENDERER_HOST_TEST_RENDER_VIEW_HOST_H_ |
+#include <string> |
+#include <vector> |
+ |
#include "base/basictypes.h" |
#include "base/gtest_prod_util.h" |
#include "build/build_config.h" |
@@ -66,6 +69,10 @@ |
virtual void SetTakesFocusOnlyOnMouseDown(bool flag) OVERRIDE {} |
virtual void SetWindowVisibility(bool visible) OVERRIDE {} |
virtual void WindowFrameChanged() OVERRIDE {} |
+ virtual bool SupportsSpeech() const OVERRIDE; |
+ virtual void SpeakSelection() OVERRIDE; |
+ virtual bool IsSpeaking() const OVERRIDE; |
+ virtual void StopSpeaking() OVERRIDE; |
#endif // defined(OS_MACOSX) |
#if defined(TOOLKIT_GTK) |
virtual GdkEventButton* GetLastMouseDown() OVERRIDE; |