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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 gfx::Rect GetViewBounds() const override; | 82 gfx::Rect GetViewBounds() const override; |
83 #if defined(OS_MACOSX) | 83 #if defined(OS_MACOSX) |
84 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; | 84 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; |
85 void SetActive(bool active) override; | 85 void SetActive(bool active) override; |
86 void ShowDefinitionForSelection() override {} | 86 void ShowDefinitionForSelection() override {} |
87 bool SupportsSpeech() const override; | 87 bool SupportsSpeech() const override; |
88 void SpeakSelection() override; | 88 void SpeakSelection() override; |
89 bool IsSpeaking() const override; | 89 bool IsSpeaking() const override; |
90 void StopSpeaking() override; | 90 void StopSpeaking() override; |
91 #endif // defined(OS_MACOSX) | 91 #endif // defined(OS_MACOSX) |
92 void OnSwapCompositorFrame( | 92 void OnSwapCompositorFrame(uint32_t output_surface_id, |
93 uint32_t output_surface_id, | 93 cc::CompositorFrame frame) override; |
94 std::unique_ptr<cc::CompositorFrame> frame) override; | |
95 void ClearCompositorFrame() override {} | 94 void ClearCompositorFrame() override {} |
96 | 95 |
97 // RenderWidgetHostViewBase implementation. | 96 // RenderWidgetHostViewBase implementation. |
98 void InitAsPopup(RenderWidgetHostView* parent_host_view, | 97 void InitAsPopup(RenderWidgetHostView* parent_host_view, |
99 const gfx::Rect& bounds) override {} | 98 const gfx::Rect& bounds) override {} |
100 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} | 99 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} |
101 void Focus() override {} | 100 void Focus() override {} |
102 void SetIsLoading(bool is_loading) override {} | 101 void SetIsLoading(bool is_loading) override {} |
103 void UpdateCursor(const WebCursor& cursor) override {} | 102 void UpdateCursor(const WebCursor& cursor) override {} |
104 void TextInputStateChanged(const TextInputState& params) override {} | 103 void TextInputStateChanged(const TextInputState& params) override {} |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 private: | 308 private: |
310 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> | 309 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> |
311 ScopedSetSupportedScaleFactors; | 310 ScopedSetSupportedScaleFactors; |
312 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 311 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
313 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 312 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
314 }; | 313 }; |
315 | 314 |
316 } // namespace content | 315 } // namespace content |
317 | 316 |
318 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 317 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
OLD | NEW |