| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 84 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
| 85 | 85 |
| 86 // RenderWidgetHostViewPort implementation. | 86 // RenderWidgetHostViewPort implementation. |
| 87 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 87 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 88 const gfx::Rect& pos) OVERRIDE {} | 88 const gfx::Rect& pos) OVERRIDE {} |
| 89 virtual void InitAsFullscreen( | 89 virtual void InitAsFullscreen( |
| 90 RenderWidgetHostView* reference_host_view) OVERRIDE {} | 90 RenderWidgetHostView* reference_host_view) OVERRIDE {} |
| 91 virtual void WasShown() OVERRIDE {} | 91 virtual void WasShown() OVERRIDE {} |
| 92 virtual void WasHidden() OVERRIDE {} | 92 virtual void WasHidden() OVERRIDE {} |
| 93 virtual void MovePluginWindows( | 93 virtual void MovePluginWindows( |
| 94 const gfx::Vector2d& scroll_offset, | |
| 95 const std::vector<WebPluginGeometry>& moves) OVERRIDE {} | 94 const std::vector<WebPluginGeometry>& moves) OVERRIDE {} |
| 96 virtual void Focus() OVERRIDE {} | 95 virtual void Focus() OVERRIDE {} |
| 97 virtual void Blur() OVERRIDE {} | 96 virtual void Blur() OVERRIDE {} |
| 98 virtual void SetIsLoading(bool is_loading) OVERRIDE {} | 97 virtual void SetIsLoading(bool is_loading) OVERRIDE {} |
| 99 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE {} | 98 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE {} |
| 100 virtual void TextInputTypeChanged(ui::TextInputType type, | 99 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 101 ui::TextInputMode input_mode, | 100 ui::TextInputMode input_mode, |
| 102 bool can_compose_inline) OVERRIDE {} | 101 bool can_compose_inline) OVERRIDE {} |
| 103 virtual void ImeCancelComposition() OVERRIDE {} | 102 virtual void ImeCancelComposition() OVERRIDE {} |
| 104 #if defined(OS_MACOSX) || defined(USE_AURA) | 103 #if defined(OS_MACOSX) || defined(USE_AURA) |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 private: | 381 private: |
| 383 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> | 382 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> |
| 384 ScopedSetSupportedScaleFactors; | 383 ScopedSetSupportedScaleFactors; |
| 385 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 384 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
| 386 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 385 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
| 387 }; | 386 }; |
| 388 | 387 |
| 389 } // namespace content | 388 } // namespace content |
| 390 | 389 |
| 391 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 390 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |