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 <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 void Show() OVERRIDE; | 153 virtual void Show() OVERRIDE; |
154 virtual void Hide() OVERRIDE; | 154 virtual void Hide() OVERRIDE; |
155 virtual bool IsShowing() OVERRIDE; | 155 virtual bool IsShowing() OVERRIDE; |
156 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 156 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
157 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 157 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
158 #if defined(OS_WIN) | |
159 virtual gfx::NativeViewAccessible AccessibleObjectFromChildId(long child_id) | |
160 OVERRIDE; | |
161 #endif | |
162 | 158 |
163 // Overridden from RenderWidgetHostViewPort: | 159 // Overridden from RenderWidgetHostViewPort: |
164 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 160 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
165 const gfx::Rect& pos) OVERRIDE; | 161 const gfx::Rect& pos) OVERRIDE; |
166 virtual void InitAsFullscreen( | 162 virtual void InitAsFullscreen( |
167 RenderWidgetHostView* reference_host_view) OVERRIDE; | 163 RenderWidgetHostView* reference_host_view) OVERRIDE; |
168 virtual void WasShown() OVERRIDE; | 164 virtual void WasShown() OVERRIDE; |
169 virtual void WasHidden() OVERRIDE; | 165 virtual void WasHidden() OVERRIDE; |
170 virtual void MovePluginWindows( | 166 virtual void MovePluginWindows( |
171 const gfx::Vector2d& scroll_offset, | 167 const gfx::Vector2d& scroll_offset, |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 TouchEditingClient* touch_editing_client_; | 702 TouchEditingClient* touch_editing_client_; |
707 | 703 |
708 ui::LatencyInfo software_latency_info_; | 704 ui::LatencyInfo software_latency_info_; |
709 | 705 |
710 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 706 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
711 }; | 707 }; |
712 | 708 |
713 } // namespace content | 709 } // namespace content |
714 | 710 |
715 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 711 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |