| 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 <stddef.h> | 8 #include <stddef.h> | 
| 9 #include <stdint.h> | 9 #include <stdint.h> | 
| 10 | 10 | 
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 89   void InitAsPopup(RenderWidgetHostView* parent_host_view, | 89   void InitAsPopup(RenderWidgetHostView* parent_host_view, | 
| 90                    const gfx::Rect& pos) override; | 90                    const gfx::Rect& pos) override; | 
| 91   void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; | 91   void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; | 
| 92   RenderWidgetHost* GetRenderWidgetHost() const override; | 92   RenderWidgetHost* GetRenderWidgetHost() const override; | 
| 93   void SetSize(const gfx::Size& size) override; | 93   void SetSize(const gfx::Size& size) override; | 
| 94   void SetBounds(const gfx::Rect& rect) override; | 94   void SetBounds(const gfx::Rect& rect) override; | 
| 95   gfx::Vector2dF GetLastScrollOffset() const override; | 95   gfx::Vector2dF GetLastScrollOffset() const override; | 
| 96   gfx::NativeView GetNativeView() const override; | 96   gfx::NativeView GetNativeView() const override; | 
| 97   gfx::NativeViewId GetNativeViewId() const override; | 97   gfx::NativeViewId GetNativeViewId() const override; | 
| 98   gfx::NativeViewAccessible GetNativeViewAccessible() override; | 98   gfx::NativeViewAccessible GetNativeViewAccessible() override; | 
| 99   void MovePluginWindows(const std::vector<WebPluginGeometry>& moves) override; |  | 
| 100   void Focus() override; | 99   void Focus() override; | 
| 101   bool HasFocus() const override; | 100   bool HasFocus() const override; | 
| 102   bool IsSurfaceAvailableForCopy() const override; | 101   bool IsSurfaceAvailableForCopy() const override; | 
| 103   void Show() override; | 102   void Show() override; | 
| 104   void Hide() override; | 103   void Hide() override; | 
| 105   bool IsShowing() override; | 104   bool IsShowing() override; | 
| 106   gfx::Rect GetViewBounds() const override; | 105   gfx::Rect GetViewBounds() const override; | 
| 107   gfx::Size GetVisibleViewportSize() const override; | 106   gfx::Size GetVisibleViewportSize() const override; | 
| 108   gfx::Size GetPhysicalBackingSize() const override; | 107   gfx::Size GetPhysicalBackingSize() const override; | 
| 109   bool DoTopControlsShrinkBlinkSize() const override; | 108   bool DoTopControlsShrinkBlinkSize() const override; | 
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 409   gfx::Vector2dF last_scroll_offset_; | 408   gfx::Vector2dF last_scroll_offset_; | 
| 410 | 409 | 
| 411   base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 410   base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 
| 412 | 411 | 
| 413   DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 412   DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 
| 414 }; | 413 }; | 
| 415 | 414 | 
| 416 }  // namespace content | 415 }  // namespace content | 
| 417 | 416 | 
| 418 #endif  // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 417 #endif  // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 
| OLD | NEW | 
|---|