| 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 void OnSetEditableSelectionOffsets(int start, int end); | 822 void OnSetEditableSelectionOffsets(int start, int end); |
| 823 void OnSetCompositionFromExistingText( | 823 void OnSetCompositionFromExistingText( |
| 824 int start, int end, | 824 int start, int end, |
| 825 const std::vector<blink::WebCompositionUnderline>& underlines); | 825 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 826 void OnExecuteNoValueEditCommand(const std::string& name); | 826 void OnExecuteNoValueEditCommand(const std::string& name); |
| 827 void OnExtendSelectionAndDelete(int before, int after); | 827 void OnExtendSelectionAndDelete(int before, int after); |
| 828 void OnDeleteSurroundingText(int before, int after); | 828 void OnDeleteSurroundingText(int before, int after); |
| 829 void OnReload(bool bypass_cache); | 829 void OnReload(bool bypass_cache); |
| 830 void OnReloadLoFiImages(); | 830 void OnReloadLoFiImages(); |
| 831 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 831 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 832 void OnFocusedFormFieldDataRequest(int request_id); |
| 832 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 833 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 833 void OnSnapshotAccessibilityTree(int callback_id); | 834 void OnSnapshotAccessibilityTree(int callback_id); |
| 834 void OnUpdateOpener(int opener_routing_id); | 835 void OnUpdateOpener(int opener_routing_id); |
| 835 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 836 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 836 void OnSetFrameOwnerProperties( | 837 void OnSetFrameOwnerProperties( |
| 837 const FrameOwnerProperties& frame_owner_properties); | 838 const FrameOwnerProperties& frame_owner_properties); |
| 838 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 839 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 839 void OnSetFocusedFrame(); | 840 void OnSetFocusedFrame(); |
| 840 void OnTextTrackSettingsChanged( | 841 void OnTextTrackSettingsChanged( |
| 841 const FrameMsg_TextTrackSettings_Params& params); | 842 const FrameMsg_TextTrackSettings_Params& params); |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 bool browser_side_navigation_pending_ = false; | 1341 bool browser_side_navigation_pending_ = false; |
| 1341 | 1342 |
| 1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1343 | 1344 |
| 1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1345 }; | 1346 }; |
| 1346 | 1347 |
| 1347 } // namespace content | 1348 } // namespace content |
| 1348 | 1349 |
| 1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |