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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 RenderWidgetHostView* reference_host_view) OVERRIDE; | 79 RenderWidgetHostView* reference_host_view) OVERRIDE; |
80 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; | 80 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; |
81 virtual void WasShown() OVERRIDE; | 81 virtual void WasShown() OVERRIDE; |
82 virtual void WasHidden() OVERRIDE; | 82 virtual void WasHidden() OVERRIDE; |
83 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 83 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
84 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; | 84 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; |
85 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 85 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
86 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 86 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
87 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 87 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
88 virtual void MovePluginWindows( | 88 virtual void MovePluginWindows( |
89 const gfx::Vector2d& scroll_offset, | |
90 const std::vector<WebPluginGeometry>& moves) OVERRIDE; | 89 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
91 virtual void Focus() OVERRIDE; | 90 virtual void Focus() OVERRIDE; |
92 virtual void Blur() OVERRIDE; | 91 virtual void Blur() OVERRIDE; |
93 virtual bool HasFocus() const OVERRIDE; | 92 virtual bool HasFocus() const OVERRIDE; |
94 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 93 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
95 virtual void Show() OVERRIDE; | 94 virtual void Show() OVERRIDE; |
96 virtual void Hide() OVERRIDE; | 95 virtual void Hide() OVERRIDE; |
97 virtual bool IsShowing() OVERRIDE; | 96 virtual bool IsShowing() OVERRIDE; |
98 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 97 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
99 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; | 98 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 }; | 372 }; |
374 | 373 |
375 scoped_ptr<LastFrameInfo> last_frame_info_; | 374 scoped_ptr<LastFrameInfo> last_frame_info_; |
376 | 375 |
377 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 376 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
378 }; | 377 }; |
379 | 378 |
380 } // namespace content | 379 } // namespace content |
381 | 380 |
382 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 381 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |