| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 176 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 177 BrowserAccessibilityDelegate* delegate) override; | 177 BrowserAccessibilityDelegate* delegate) override; |
| 178 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 178 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
| 179 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 179 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 180 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 180 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
| 181 const SkBitmap& zoomed_bitmap) override; | 181 const SkBitmap& zoomed_bitmap) override; |
| 182 bool LockMouse() override; | 182 bool LockMouse() override; |
| 183 void UnlockMouse() override; | 183 void UnlockMouse() override; |
| 184 void OnSwapCompositorFrame(uint32 output_surface_id, | 184 void OnSwapCompositorFrame(uint32 output_surface_id, |
| 185 scoped_ptr<cc::CompositorFrame> frame) override; | 185 scoped_ptr<cc::CompositorFrame> frame) override; |
| 186 void ClearCompositorFrame() override; |
| 186 void DidStopFlinging() override; | 187 void DidStopFlinging() override; |
| 187 void OnDidNavigateMainFrameToNewPage() override; | 188 void OnDidNavigateMainFrameToNewPage() override; |
| 188 uint32_t GetSurfaceIdNamespace() override; | 189 uint32_t GetSurfaceIdNamespace() override; |
| 189 uint32_t SurfaceIdNamespaceAtPoint(const gfx::Point& point, | 190 uint32_t SurfaceIdNamespaceAtPoint(const gfx::Point& point, |
| 190 gfx::Point* transformed_point) override; | 191 gfx::Point* transformed_point) override; |
| 191 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; | 192 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; |
| 192 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; | 193 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; |
| 193 | 194 |
| 194 #if defined(OS_WIN) | 195 #if defined(OS_WIN) |
| 195 void SetParentNativeViewAccessible( | 196 void SetParentNativeViewAccessible( |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 bool set_focus_on_mouse_down_; | 668 bool set_focus_on_mouse_down_; |
| 668 | 669 |
| 669 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 670 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 670 | 671 |
| 671 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 672 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 672 }; | 673 }; |
| 673 | 674 |
| 674 } // namespace content | 675 } // namespace content |
| 675 | 676 |
| 676 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 677 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |