| 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_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 69 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 70 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 70 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
| 71 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 71 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
| 72 virtual bool HasFocus() const OVERRIDE; | 72 virtual bool HasFocus() const OVERRIDE; |
| 73 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 73 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
| 74 virtual void Show() OVERRIDE; | 74 virtual void Show() OVERRIDE; |
| 75 virtual void Hide() OVERRIDE; | 75 virtual void Hide() OVERRIDE; |
| 76 virtual bool IsShowing() OVERRIDE; | 76 virtual bool IsShowing() OVERRIDE; |
| 77 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 77 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
| 78 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 78 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
| 79 virtual void ScrollOffsetChanged(const gfx::Vector2d& offset) OVERRIDE; |
| 79 | 80 |
| 80 // Overridden from RenderWidgetHostViewPort: | 81 // Overridden from RenderWidgetHostViewPort: |
| 81 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 82 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 82 const gfx::Rect& pos) OVERRIDE; | 83 const gfx::Rect& pos) OVERRIDE; |
| 83 virtual void InitAsFullscreen( | 84 virtual void InitAsFullscreen( |
| 84 RenderWidgetHostView* reference_host_view) OVERRIDE; | 85 RenderWidgetHostView* reference_host_view) OVERRIDE; |
| 85 virtual void WasShown() OVERRIDE; | 86 virtual void WasShown() OVERRIDE; |
| 86 virtual void WasHidden() OVERRIDE; | 87 virtual void WasHidden() OVERRIDE; |
| 87 virtual void MovePluginWindows( | 88 virtual void MovePluginWindows( |
| 88 const gfx::Vector2d& scroll_offset, | 89 const gfx::Vector2d& scroll_offset, |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 NO_PENDING_COMMIT, | 433 NO_PENDING_COMMIT, |
| 433 }; | 434 }; |
| 434 CanLockCompositorState can_lock_compositor_; | 435 CanLockCompositorState can_lock_compositor_; |
| 435 | 436 |
| 436 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 437 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 437 }; | 438 }; |
| 438 | 439 |
| 439 } // namespace content | 440 } // namespace content |
| 440 | 441 |
| 441 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 442 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |