| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 void AccessibilitySetFocus(int acc_obj_id) override; | 127 void AccessibilitySetFocus(int acc_obj_id) override; |
| 128 void AccessibilityDoDefaultAction(int acc_obj_id) override; | 128 void AccessibilityDoDefaultAction(int acc_obj_id) override; |
| 129 void AccessibilityShowMenu(const gfx::Point& global_point) override; | 129 void AccessibilityShowMenu(const gfx::Point& global_point) override; |
| 130 void AccessibilityScrollToMakeVisible(int acc_obj_id, | 130 void AccessibilityScrollToMakeVisible(int acc_obj_id, |
| 131 const gfx::Rect& subfocus) override; | 131 const gfx::Rect& subfocus) override; |
| 132 void AccessibilityScrollToPoint(int acc_obj_id, | 132 void AccessibilityScrollToPoint(int acc_obj_id, |
| 133 const gfx::Point& point) override; | 133 const gfx::Point& point) override; |
| 134 void AccessibilitySetTextSelection(int acc_obj_id, | 134 void AccessibilitySetTextSelection(int acc_obj_id, |
| 135 int start_offset, | 135 int start_offset, |
| 136 int end_offset) override; | 136 int end_offset) override; |
| 137 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) |
| 138 override; |
| 137 bool AccessibilityViewHasFocus() const override; | 139 bool AccessibilityViewHasFocus() const override; |
| 138 gfx::Rect AccessibilityGetViewBounds() const override; | 140 gfx::Rect AccessibilityGetViewBounds() const override; |
| 139 gfx::Point AccessibilityOriginInScreen( | 141 gfx::Point AccessibilityOriginInScreen( |
| 140 const gfx::Rect& bounds) const override; | 142 const gfx::Rect& bounds) const override; |
| 141 void AccessibilityHitTest(const gfx::Point& point) override; | 143 void AccessibilityHitTest(const gfx::Point& point) override; |
| 142 void AccessibilityFatalError() override; | 144 void AccessibilityFatalError() override; |
| 143 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 145 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
| 144 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 146 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 145 BrowserAccessibilityManager* AccessibilityGetChildFrame( | 147 BrowserAccessibilityManager* AccessibilityGetChildFrame( |
| 146 int accessibility_node_id) override; | 148 int accessibility_node_id) override; |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 | 603 |
| 602 // NOTE: This must be the last member. | 604 // NOTE: This must be the last member. |
| 603 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 605 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 604 | 606 |
| 605 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 607 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 606 }; | 608 }; |
| 607 | 609 |
| 608 } // namespace content | 610 } // namespace content |
| 609 | 611 |
| 610 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 612 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |