| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 void OnSetEditableSelectionOffsets(int start, int end); | 817 void OnSetEditableSelectionOffsets(int start, int end); |
| 818 void OnSetCompositionFromExistingText( | 818 void OnSetCompositionFromExistingText( |
| 819 int start, int end, | 819 int start, int end, |
| 820 const std::vector<blink::WebCompositionUnderline>& underlines); | 820 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 821 void OnExecuteNoValueEditCommand(const std::string& name); | 821 void OnExecuteNoValueEditCommand(const std::string& name); |
| 822 void OnExtendSelectionAndDelete(int before, int after); | 822 void OnExtendSelectionAndDelete(int before, int after); |
| 823 void OnDeleteSurroundingText(int before, int after); | 823 void OnDeleteSurroundingText(int before, int after); |
| 824 void OnReload(bool bypass_cache); | 824 void OnReload(bool bypass_cache); |
| 825 void OnReloadLoFiImages(); | 825 void OnReloadLoFiImages(); |
| 826 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 826 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 827 void OnFocusedFormFieldDataRequest(int request_id); |
| 827 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 828 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 828 void OnSnapshotAccessibilityTree(int callback_id); | 829 void OnSnapshotAccessibilityTree(int callback_id); |
| 829 void OnUpdateOpener(int opener_routing_id); | 830 void OnUpdateOpener(int opener_routing_id); |
| 830 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 831 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 831 void OnSetFrameOwnerProperties( | 832 void OnSetFrameOwnerProperties( |
| 832 const FrameOwnerProperties& frame_owner_properties); | 833 const FrameOwnerProperties& frame_owner_properties); |
| 833 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 834 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 834 void OnSetFocusedFrame(); | 835 void OnSetFocusedFrame(); |
| 835 void OnClearFocusedFrame(); | 836 void OnClearFocusedFrame(); |
| 836 void OnTextTrackSettingsChanged( | 837 void OnTextTrackSettingsChanged( |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 bool browser_side_navigation_pending_ = false; | 1330 bool browser_side_navigation_pending_ = false; |
| 1330 | 1331 |
| 1331 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1332 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1332 | 1333 |
| 1333 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1334 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1334 }; | 1335 }; |
| 1335 | 1336 |
| 1336 } // namespace content | 1337 } // namespace content |
| 1337 | 1338 |
| 1338 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1339 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |