| 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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 bool notify_result, | 830 bool notify_result, |
| 831 int world_id); | 831 int world_id); |
| 832 void OnVisualStateRequest(uint64_t key); | 832 void OnVisualStateRequest(uint64_t key); |
| 833 void OnSetEditableSelectionOffsets(int start, int end); | 833 void OnSetEditableSelectionOffsets(int start, int end); |
| 834 void OnSetCompositionFromExistingText( | 834 void OnSetCompositionFromExistingText( |
| 835 int start, int end, | 835 int start, int end, |
| 836 const std::vector<blink::WebCompositionUnderline>& underlines); | 836 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 837 void OnExecuteNoValueEditCommand(const std::string& name); | 837 void OnExecuteNoValueEditCommand(const std::string& name); |
| 838 void OnExtendSelectionAndDelete(int before, int after); | 838 void OnExtendSelectionAndDelete(int before, int after); |
| 839 void OnDeleteSurroundingText(int before, int after); | 839 void OnDeleteSurroundingText(int before, int after); |
| 840 void OnDeleteSurroundingTextInCodePoints(int before, int after); |
| 840 void OnReload(bool bypass_cache); | 841 void OnReload(bool bypass_cache); |
| 841 void OnReloadLoFiImages(); | 842 void OnReloadLoFiImages(); |
| 842 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 843 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 843 void OnFocusedFormFieldDataRequest(int request_id); | 844 void OnFocusedFormFieldDataRequest(int request_id); |
| 844 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 845 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 845 void OnSnapshotAccessibilityTree(int callback_id); | 846 void OnSnapshotAccessibilityTree(int callback_id); |
| 846 void OnUpdateOpener(int opener_routing_id); | 847 void OnUpdateOpener(int opener_routing_id); |
| 847 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 848 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 848 void OnSetFrameOwnerProperties( | 849 void OnSetFrameOwnerProperties( |
| 849 const FrameOwnerProperties& frame_owner_properties); | 850 const FrameOwnerProperties& frame_owner_properties); |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 bool browser_side_navigation_pending_ = false; | 1359 bool browser_side_navigation_pending_ = false; |
| 1359 | 1360 |
| 1360 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1361 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1361 | 1362 |
| 1362 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1363 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1363 }; | 1364 }; |
| 1364 | 1365 |
| 1365 } // namespace content | 1366 } // namespace content |
| 1366 | 1367 |
| 1367 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1368 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |