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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 bool notify_result, | 861 bool notify_result, |
862 int world_id); | 862 int world_id); |
863 void OnVisualStateRequest(uint64_t key); | 863 void OnVisualStateRequest(uint64_t key); |
864 void OnSetEditableSelectionOffsets(int start, int end); | 864 void OnSetEditableSelectionOffsets(int start, int end); |
865 void OnSetCompositionFromExistingText( | 865 void OnSetCompositionFromExistingText( |
866 int start, int end, | 866 int start, int end, |
867 const std::vector<blink::WebCompositionUnderline>& underlines); | 867 const std::vector<blink::WebCompositionUnderline>& underlines); |
868 void OnExecuteNoValueEditCommand(const std::string& name); | 868 void OnExecuteNoValueEditCommand(const std::string& name); |
869 void OnExtendSelectionAndDelete(int before, int after); | 869 void OnExtendSelectionAndDelete(int before, int after); |
870 void OnDeleteSurroundingText(int before, int after); | 870 void OnDeleteSurroundingText(int before, int after); |
| 871 void OnDeleteSurroundingTextInCodePoints(int before, int after); |
871 void OnReload(bool bypass_cache); | 872 void OnReload(bool bypass_cache); |
872 void OnReloadLoFiImages(); | 873 void OnReloadLoFiImages(); |
873 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 874 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
874 void OnFocusedFormFieldDataRequest(int request_id); | 875 void OnFocusedFormFieldDataRequest(int request_id); |
875 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 876 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
876 void OnSnapshotAccessibilityTree(int callback_id); | 877 void OnSnapshotAccessibilityTree(int callback_id); |
877 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); | 878 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); |
878 void OnUpdateOpener(int opener_routing_id); | 879 void OnUpdateOpener(int opener_routing_id); |
879 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 880 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
880 void OnSetFrameOwnerProperties( | 881 void OnSetFrameOwnerProperties( |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1384 int enabled_bindings_ = 0; | 1385 int enabled_bindings_ = 0; |
1385 | 1386 |
1386 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1387 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1387 | 1388 |
1388 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1389 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1389 }; | 1390 }; |
1390 | 1391 |
1391 } // namespace content | 1392 } // namespace content |
1392 | 1393 |
1393 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1394 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |