| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 908 |
| 908 // NOTE: This must be the last member. | 909 // NOTE: This must be the last member. |
| 909 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 910 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 910 | 911 |
| 911 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 912 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 912 }; | 913 }; |
| 913 | 914 |
| 914 } // namespace content | 915 } // namespace content |
| 915 | 916 |
| 916 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 917 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |