| 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 <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; | 135 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; |
| 136 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 136 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 137 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 137 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
| 138 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 138 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
| 139 virtual bool HasFocus() const OVERRIDE; | 139 virtual bool HasFocus() const OVERRIDE; |
| 140 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 140 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
| 141 virtual void Show() OVERRIDE; | 141 virtual void Show() OVERRIDE; |
| 142 virtual void Hide() OVERRIDE; | 142 virtual void Hide() OVERRIDE; |
| 143 virtual bool IsShowing() OVERRIDE; | 143 virtual bool IsShowing() OVERRIDE; |
| 144 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 144 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
| 145 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 145 virtual void SetBackgroundOpaque(bool opaque) OVERRIDE; |
| 146 virtual gfx::Size GetVisibleViewportSize() const OVERRIDE; | 146 virtual gfx::Size GetVisibleViewportSize() const OVERRIDE; |
| 147 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; | 147 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; |
| 148 | 148 |
| 149 // Overridden from RenderWidgetHostViewBase: | 149 // Overridden from RenderWidgetHostViewBase: |
| 150 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 150 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 151 const gfx::Rect& pos) OVERRIDE; | 151 const gfx::Rect& pos) OVERRIDE; |
| 152 virtual void InitAsFullscreen( | 152 virtual void InitAsFullscreen( |
| 153 RenderWidgetHostView* reference_host_view) OVERRIDE; | 153 RenderWidgetHostView* reference_host_view) OVERRIDE; |
| 154 virtual void WasShown() OVERRIDE; | 154 virtual void WasShown() OVERRIDE; |
| 155 virtual void WasHidden() OVERRIDE; | 155 virtual void WasHidden() OVERRIDE; |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 // etc. | 562 // etc. |
| 563 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 563 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
| 564 legacy_render_widget_host_HWND_; | 564 legacy_render_widget_host_HWND_; |
| 565 #endif | 565 #endif |
| 566 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 566 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 567 }; | 567 }; |
| 568 | 568 |
| 569 } // namespace content | 569 } // namespace content |
| 570 | 570 |
| 571 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 571 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |