| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 98 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 99 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 99 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
| 100 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 100 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
| 101 virtual bool HasFocus() const OVERRIDE; | 101 virtual bool HasFocus() const OVERRIDE; |
| 102 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 102 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
| 103 virtual void Show() OVERRIDE; | 103 virtual void Show() OVERRIDE; |
| 104 virtual void Hide() OVERRIDE; | 104 virtual void Hide() OVERRIDE; |
| 105 virtual bool IsShowing() OVERRIDE; | 105 virtual bool IsShowing() OVERRIDE; |
| 106 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 106 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
| 107 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 107 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
| 108 virtual void ScrollOffsetChanged() OVERRIDE; |
| 108 | 109 |
| 109 // Overridden from RenderWidgetHostViewPort: | 110 // Overridden from RenderWidgetHostViewPort: |
| 110 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 111 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 111 const gfx::Rect& pos) OVERRIDE; | 112 const gfx::Rect& pos) OVERRIDE; |
| 112 virtual void InitAsFullscreen( | 113 virtual void InitAsFullscreen( |
| 113 RenderWidgetHostView* reference_host_view) OVERRIDE; | 114 RenderWidgetHostView* reference_host_view) OVERRIDE; |
| 114 virtual void WasShown() OVERRIDE; | 115 virtual void WasShown() OVERRIDE; |
| 115 virtual void WasHidden() OVERRIDE; | 116 virtual void WasHidden() OVERRIDE; |
| 116 virtual void MovePluginWindows( | 117 virtual void MovePluginWindows( |
| 117 const gfx::Vector2d& scroll_offset, | 118 const gfx::Vector2d& scroll_offset, |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 // observer is not owned by the view, and must remove itself as an oberver | 471 // observer is not owned by the view, and must remove itself as an oberver |
| 471 // when it is being destroyed. | 472 // when it is being destroyed. |
| 472 PaintObserver* paint_observer_; | 473 PaintObserver* paint_observer_; |
| 473 | 474 |
| 474 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 475 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 475 }; | 476 }; |
| 476 | 477 |
| 477 } // namespace content | 478 } // namespace content |
| 478 | 479 |
| 479 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 480 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |