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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 143 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
144 virtual void InitAsChild(gfx::NativeView parent_view) OVERRIDE; | 144 virtual void InitAsChild(gfx::NativeView parent_view) OVERRIDE; |
145 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; | 145 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; |
146 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 146 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
147 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; | 147 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; |
148 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 148 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
149 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 149 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
150 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 150 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
151 virtual bool HasFocus() const OVERRIDE; | 151 virtual bool HasFocus() const OVERRIDE; |
152 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 152 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
| 153 virtual ui::TextInputClient* GetTextInputClient() OVERRIDE; |
153 virtual void Show() OVERRIDE; | 154 virtual void Show() OVERRIDE; |
154 virtual void Hide() OVERRIDE; | 155 virtual void Hide() OVERRIDE; |
155 virtual bool IsShowing() OVERRIDE; | 156 virtual bool IsShowing() OVERRIDE; |
156 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 157 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
157 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 158 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
158 | 159 |
159 // Overridden from RenderWidgetHostViewPort: | 160 // Overridden from RenderWidgetHostViewPort: |
160 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 161 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
161 const gfx::Rect& pos) OVERRIDE; | 162 const gfx::Rect& pos) OVERRIDE; |
162 virtual void InitAsFullscreen( | 163 virtual void InitAsFullscreen( |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 // etc. | 791 // etc. |
791 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 792 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
792 legacy_render_widget_host_HWND_; | 793 legacy_render_widget_host_HWND_; |
793 #endif | 794 #endif |
794 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 795 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
795 }; | 796 }; |
796 | 797 |
797 } // namespace content | 798 } // namespace content |
798 | 799 |
799 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 800 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |