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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 101 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
102 virtual bool AccessibilityViewHasFocus() const OVERRIDE; | 102 virtual bool AccessibilityViewHasFocus() const OVERRIDE; |
103 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE; | 103 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE; |
104 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds) | 104 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds) |
105 const OVERRIDE; | 105 const OVERRIDE; |
106 virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE; | 106 virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE; |
107 virtual void AccessibilityFatalError() OVERRIDE; | 107 virtual void AccessibilityFatalError() OVERRIDE; |
108 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() OVERRIDE; | 108 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() OVERRIDE; |
109 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() | 109 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() |
110 OVERRIDE; | 110 OVERRIDE; |
| 111 virtual BrowserAccessibilityManager* AccessibilityGetChildFrame( |
| 112 int64 frame_tree_node_id) OVERRIDE; |
| 113 virtual BrowserAccessibilityManager* AccessibilityGetParentFrame() OVERRIDE; |
111 | 114 |
112 bool CreateRenderFrame(int parent_routing_id); | 115 bool CreateRenderFrame(int parent_routing_id); |
113 bool IsRenderFrameLive(); | 116 bool IsRenderFrameLive(); |
114 void Init(); | 117 void Init(); |
115 int routing_id() const { return routing_id_; } | 118 int routing_id() const { return routing_id_; } |
116 void OnCreateChildFrame(int new_routing_id, | 119 void OnCreateChildFrame(int new_routing_id, |
117 const std::string& frame_name); | 120 const std::string& frame_name); |
118 | 121 |
119 RenderViewHostImpl* render_view_host() { return render_view_host_; } | 122 RenderViewHostImpl* render_view_host() { return render_view_host_; } |
120 RenderFrameHostDelegate* delegate() { return delegate_; } | 123 RenderFrameHostDelegate* delegate() { return delegate_; } |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; | 449 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; |
447 // The most recently received accessibility tree - for testing only. | 450 // The most recently received accessibility tree - for testing only. |
448 scoped_ptr<ui::AXTree> ax_tree_for_testing_; | 451 scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
449 | 452 |
450 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 453 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
451 }; | 454 }; |
452 | 455 |
453 } // namespace content | 456 } // namespace content |
454 | 457 |
455 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 458 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |