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 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 bool notify_result, | 853 bool notify_result, |
854 int world_id); | 854 int world_id); |
855 void OnVisualStateRequest(uint64_t key); | 855 void OnVisualStateRequest(uint64_t key); |
856 void OnSetEditableSelectionOffsets(int start, int end); | 856 void OnSetEditableSelectionOffsets(int start, int end); |
857 void OnSetCompositionFromExistingText( | 857 void OnSetCompositionFromExistingText( |
858 int start, int end, | 858 int start, int end, |
859 const std::vector<blink::WebCompositionUnderline>& underlines); | 859 const std::vector<blink::WebCompositionUnderline>& underlines); |
860 void OnExecuteNoValueEditCommand(const std::string& name); | 860 void OnExecuteNoValueEditCommand(const std::string& name); |
861 void OnExtendSelectionAndDelete(int before, int after); | 861 void OnExtendSelectionAndDelete(int before, int after); |
862 void OnDeleteSurroundingText(int before, int after); | 862 void OnDeleteSurroundingText(int before, int after); |
| 863 void OnDeleteSurroundingTextInCodePoints(int before, int after); |
863 void OnReload(bool bypass_cache); | 864 void OnReload(bool bypass_cache); |
864 void OnReloadLoFiImages(); | 865 void OnReloadLoFiImages(); |
865 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 866 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
866 void OnFocusedFormFieldDataRequest(int request_id); | 867 void OnFocusedFormFieldDataRequest(int request_id); |
867 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 868 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
868 void OnSnapshotAccessibilityTree(int callback_id); | 869 void OnSnapshotAccessibilityTree(int callback_id); |
869 void OnUpdateOpener(int opener_routing_id); | 870 void OnUpdateOpener(int opener_routing_id); |
870 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 871 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
871 void OnSetFrameOwnerProperties( | 872 void OnSetFrameOwnerProperties( |
872 const FrameOwnerProperties& frame_owner_properties); | 873 const FrameOwnerProperties& frame_owner_properties); |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1382 bool browser_side_navigation_pending_ = false; | 1383 bool browser_side_navigation_pending_ = false; |
1383 | 1384 |
1384 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1385 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1385 | 1386 |
1386 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1387 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1387 }; | 1388 }; |
1388 | 1389 |
1389 } // namespace content | 1390 } // namespace content |
1390 | 1391 |
1391 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1392 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |