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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 void AccessibilitySetSelection(int anchor_object_id, | 194 void AccessibilitySetSelection(int anchor_object_id, |
195 int anchor_offset, | 195 int anchor_offset, |
196 int focus_object_id, | 196 int focus_object_id, |
197 int focus_offset) override; | 197 int focus_offset) override; |
198 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) | 198 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) |
199 override; | 199 override; |
200 bool AccessibilityViewHasFocus() const override; | 200 bool AccessibilityViewHasFocus() const override; |
201 gfx::Rect AccessibilityGetViewBounds() const override; | 201 gfx::Rect AccessibilityGetViewBounds() const override; |
202 gfx::Point AccessibilityOriginInScreen( | 202 gfx::Point AccessibilityOriginInScreen( |
203 const gfx::Rect& bounds) const override; | 203 const gfx::Rect& bounds) const override; |
| 204 void AccessibilityTransformToRootCoordSpace(gfx::Rect* bounds) override; |
204 void AccessibilityHitTest(const gfx::Point& point) override; | 205 void AccessibilityHitTest(const gfx::Point& point) override; |
205 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; | 206 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; |
206 void AccessibilityFatalError() override; | 207 void AccessibilityFatalError() override; |
207 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 208 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
208 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 209 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
209 | 210 |
210 // SiteInstanceImpl::Observer | 211 // SiteInstanceImpl::Observer |
211 void RenderProcessGone(SiteInstanceImpl* site_instance) override; | 212 void RenderProcessGone(SiteInstanceImpl* site_instance) override; |
212 | 213 |
213 // Creates a RenderFrame in the renderer process. | 214 // Creates a RenderFrame in the renderer process. |
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 | 932 |
932 // NOTE: This must be the last member. | 933 // NOTE: This must be the last member. |
933 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 934 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
934 | 935 |
935 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 936 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
936 }; | 937 }; |
937 | 938 |
938 } // namespace content | 939 } // namespace content |
939 | 940 |
940 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 941 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |