| 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; |
| 85 void SpeakSelection() override; | 86 void SpeakSelection() override; |
| 87 bool IsSpeaking() const override; |
| 88 void StopSpeaking() override; |
| 86 #endif // defined(OS_MACOSX) | 89 #endif // defined(OS_MACOSX) |
| 87 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, | 90 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, |
| 88 cc::CompositorFrame frame) override; | 91 cc::CompositorFrame frame) override; |
| 89 void ClearCompositorFrame() override {} | 92 void ClearCompositorFrame() override {} |
| 90 void SetNeedsBeginFrames(bool needs_begin_frames) override {} | 93 void SetNeedsBeginFrames(bool needs_begin_frames) override {} |
| 91 | 94 |
| 92 // RenderWidgetHostViewBase implementation. | 95 // RenderWidgetHostViewBase implementation. |
| 93 void InitAsPopup(RenderWidgetHostView* parent_host_view, | 96 void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 94 const gfx::Rect& bounds) override {} | 97 const gfx::Rect& bounds) override {} |
| 95 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} | 98 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 private: | 302 private: |
| 300 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> | 303 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> |
| 301 ScopedSetSupportedScaleFactors; | 304 ScopedSetSupportedScaleFactors; |
| 302 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 305 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
| 303 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 306 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
| 304 }; | 307 }; |
| 305 | 308 |
| 306 } // namespace content | 309 } // namespace content |
| 307 | 310 |
| 308 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 311 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |