| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 103 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
| 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( | |
| 114 int64 frame_tree_node_id) OVERRIDE; | |
| 115 virtual BrowserAccessibilityManager* AccessibilityGetParentFrame() OVERRIDE; | |
| 116 | 113 |
| 117 bool CreateRenderFrame(int parent_routing_id); | 114 bool CreateRenderFrame(int parent_routing_id); |
| 118 bool IsRenderFrameLive(); | 115 bool IsRenderFrameLive(); |
| 119 void Init(); | 116 void Init(); |
| 120 int routing_id() const { return routing_id_; } | 117 int routing_id() const { return routing_id_; } |
| 121 void OnCreateChildFrame(int new_routing_id, | 118 void OnCreateChildFrame(int new_routing_id, |
| 122 const std::string& frame_name); | 119 const std::string& frame_name); |
| 123 | 120 |
| 124 RenderViewHostImpl* render_view_host() { return render_view_host_; } | 121 RenderViewHostImpl* render_view_host() { return render_view_host_; } |
| 125 RenderFrameHostDelegate* delegate() { return delegate_; } | 122 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_; | 449 base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; |
| 453 // The most recently received accessibility tree - for testing only. | 450 // The most recently received accessibility tree - for testing only. |
| 454 scoped_ptr<ui::AXTree> ax_tree_for_testing_; | 451 scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
| 455 | 452 |
| 456 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 453 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 457 }; | 454 }; |
| 458 | 455 |
| 459 } // namespace content | 456 } // namespace content |
| 460 | 457 |
| 461 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 458 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |