| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 void AccessibilitySetSelection(int anchor_object_id, | 191 void AccessibilitySetSelection(int anchor_object_id, |
| 192 int anchor_offset, | 192 int anchor_offset, |
| 193 int focus_object_id, | 193 int focus_object_id, |
| 194 int focus_offset) override; | 194 int focus_offset) override; |
| 195 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) | 195 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) |
| 196 override; | 196 override; |
| 197 bool AccessibilityViewHasFocus() const override; | 197 bool AccessibilityViewHasFocus() const override; |
| 198 gfx::Rect AccessibilityGetViewBounds() const override; | 198 gfx::Rect AccessibilityGetViewBounds() const override; |
| 199 gfx::Point AccessibilityOriginInScreen( | 199 gfx::Point AccessibilityOriginInScreen( |
| 200 const gfx::Rect& bounds) const override; | 200 const gfx::Rect& bounds) const override; |
| 201 gfx::Rect AccessibilityTransformToRootCoordSpace( | |
| 202 const gfx::Rect& bounds) override; | |
| 203 SiteInstance* AccessibilityGetSiteInstance() override; | |
| 204 void AccessibilityHitTest(const gfx::Point& point) override; | 201 void AccessibilityHitTest(const gfx::Point& point) override; |
| 205 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; | 202 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; |
| 206 void AccessibilityFatalError() override; | 203 void AccessibilityFatalError() override; |
| 207 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 204 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
| 208 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 205 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 209 | 206 |
| 210 // SiteInstanceImpl::Observer | 207 // SiteInstanceImpl::Observer |
| 211 void RenderProcessGone(SiteInstanceImpl* site_instance) override; | 208 void RenderProcessGone(SiteInstanceImpl* site_instance) override; |
| 212 | 209 |
| 213 // shell::InterfaceFactory<media::mojom::ServiceFactory> | 210 // shell::InterfaceFactory<media::mojom::ServiceFactory> |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 | 1055 |
| 1059 // NOTE: This must be the last member. | 1056 // NOTE: This must be the last member. |
| 1060 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1057 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1061 | 1058 |
| 1062 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1059 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1063 }; | 1060 }; |
| 1064 | 1061 |
| 1065 } // namespace content | 1062 } // namespace content |
| 1066 | 1063 |
| 1067 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1064 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |