| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 virtual bool AccessibilityViewHasFocus() const OVERRIDE; | 104 virtual bool AccessibilityViewHasFocus() const OVERRIDE; |
| 105 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE; | 105 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE; |
| 106 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds) | 106 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds) |
| 107 const OVERRIDE; | 107 const OVERRIDE; |
| 108 virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE; | 108 virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE; |
| 109 virtual void AccessibilityFatalError() OVERRIDE; | 109 virtual void AccessibilityFatalError() OVERRIDE; |
| 110 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() OVERRIDE; | 110 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() OVERRIDE; |
| 111 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() | 111 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() |
| 112 OVERRIDE; | 112 OVERRIDE; |
| 113 virtual BrowserAccessibilityManager* AccessibilityGetChildFrame( | 113 virtual BrowserAccessibilityManager* AccessibilityGetChildFrame( |
| 114 int64 frame_tree_node_id) OVERRIDE; | 114 int accessibility_node_id) OVERRIDE; |
| 115 virtual BrowserAccessibilityManager* AccessibilityGetParentFrame() OVERRIDE; | 115 virtual BrowserAccessibility* AccessibilityGetParentFrame() OVERRIDE; |
| 116 | 116 |
| 117 bool CreateRenderFrame(int parent_routing_id); | 117 bool CreateRenderFrame(int parent_routing_id); |
| 118 bool IsRenderFrameLive(); | 118 bool IsRenderFrameLive(); |
| 119 void Init(); | 119 void Init(); |
| 120 int routing_id() const { return routing_id_; } | 120 int routing_id() const { return routing_id_; } |
| 121 void OnCreateChildFrame(int new_routing_id, | 121 void OnCreateChildFrame(int new_routing_id, |
| 122 const std::string& frame_name); | 122 const std::string& frame_name); |
| 123 | 123 |
| 124 RenderViewHostImpl* render_view_host() { return render_view_host_; } | 124 RenderViewHostImpl* render_view_host() { return render_view_host_; } |
| 125 RenderFrameHostDelegate* delegate() { return delegate_; } | 125 RenderFrameHostDelegate* delegate() { return delegate_; } |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; | 452 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; |
| 453 // The most recently received accessibility tree - for testing only. | 453 // The most recently received accessibility tree - for testing only. |
| 454 scoped_ptr<ui::AXTree> ax_tree_for_testing_; | 454 scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
| 455 | 455 |
| 456 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 456 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 457 }; | 457 }; |
| 458 | 458 |
| 459 } // namespace content | 459 } // namespace content |
| 460 | 460 |
| 461 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 461 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |