| OLD | NEW |
| 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 CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 5 #ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 void Show() override; | 75 void Show() override; |
| 76 void Hide() override; | 76 void Hide() override; |
| 77 bool IsShowing() override; | 77 bool IsShowing() override; |
| 78 void WasUnOccluded() override; | 78 void WasUnOccluded() override; |
| 79 void WasOccluded() override; | 79 void WasOccluded() override; |
| 80 gfx::Rect GetViewBounds() const override; | 80 gfx::Rect GetViewBounds() const override; |
| 81 #if defined(OS_MACOSX) | 81 #if defined(OS_MACOSX) |
| 82 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; | 82 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; |
| 83 void SetActive(bool active) override; | 83 void SetActive(bool active) override; |
| 84 void ShowDefinitionForSelection() override {} | 84 void ShowDefinitionForSelection() override {} |
| 85 bool SupportsSpeech() const override; | |
| 86 void SpeakSelection() override; | 85 void SpeakSelection() override; |
| 87 bool IsSpeaking() const override; | |
| 88 void StopSpeaking() override; | |
| 89 #endif // defined(OS_MACOSX) | 86 #endif // defined(OS_MACOSX) |
| 90 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, | 87 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, |
| 91 cc::CompositorFrame frame) override; | 88 cc::CompositorFrame frame) override; |
| 92 void ClearCompositorFrame() override {} | 89 void ClearCompositorFrame() override {} |
| 93 void SetNeedsBeginFrames(bool needs_begin_frames) override {} | 90 void SetNeedsBeginFrames(bool needs_begin_frames) override {} |
| 94 | 91 |
| 95 // RenderWidgetHostViewBase implementation. | 92 // RenderWidgetHostViewBase implementation. |
| 96 void InitAsPopup(RenderWidgetHostView* parent_host_view, | 93 void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 97 const gfx::Rect& bounds) override {} | 94 const gfx::Rect& bounds) override {} |
| 98 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} | 95 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 private: | 291 private: |
| 295 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> | 292 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> |
| 296 ScopedSetSupportedScaleFactors; | 293 ScopedSetSupportedScaleFactors; |
| 297 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 294 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
| 298 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 295 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
| 299 }; | 296 }; |
| 300 | 297 |
| 301 } // namespace content | 298 } // namespace content |
| 302 | 299 |
| 303 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 300 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |