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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 void AccessibilitySetSelection(int anchor_object_id, | 187 void AccessibilitySetSelection(int anchor_object_id, |
188 int anchor_offset, | 188 int anchor_offset, |
189 int focus_object_id, | 189 int focus_object_id, |
190 int focus_offset) override; | 190 int focus_offset) override; |
191 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) | 191 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) |
192 override; | 192 override; |
193 bool AccessibilityViewHasFocus() const override; | 193 bool AccessibilityViewHasFocus() const override; |
194 gfx::Rect AccessibilityGetViewBounds() const override; | 194 gfx::Rect AccessibilityGetViewBounds() const override; |
195 gfx::Point AccessibilityOriginInScreen( | 195 gfx::Point AccessibilityOriginInScreen( |
196 const gfx::Rect& bounds) const override; | 196 const gfx::Rect& bounds) const override; |
| 197 gfx::Rect AccessibilityTransformToRootCoordSpace( |
| 198 const gfx::Rect& bounds) override; |
| 199 SiteInstance* AccessibilityGetSiteInstance() override; |
197 void AccessibilityHitTest(const gfx::Point& point) override; | 200 void AccessibilityHitTest(const gfx::Point& point) override; |
198 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; | 201 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; |
199 void AccessibilityFatalError() override; | 202 void AccessibilityFatalError() override; |
200 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 203 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
201 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 204 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
202 | 205 |
203 // SiteInstanceImpl::Observer | 206 // SiteInstanceImpl::Observer |
204 void RenderProcessGone(SiteInstanceImpl* site_instance) override; | 207 void RenderProcessGone(SiteInstanceImpl* site_instance) override; |
205 | 208 |
206 // Creates a RenderFrame in the renderer process. | 209 // Creates a RenderFrame in the renderer process. |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
939 | 942 |
940 // NOTE: This must be the last member. | 943 // NOTE: This must be the last member. |
941 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 944 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
942 | 945 |
943 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 946 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
944 }; | 947 }; |
945 | 948 |
946 } // namespace content | 949 } // namespace content |
947 | 950 |
948 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 951 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |