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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 bool notify_result); | 790 bool notify_result); |
791 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, | 791 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, |
792 int id, | 792 int id, |
793 bool notify_result, | 793 bool notify_result, |
794 bool has_user_gesture); | 794 bool has_user_gesture); |
795 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, | 795 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, |
796 int id, | 796 int id, |
797 bool notify_result, | 797 bool notify_result, |
798 int world_id); | 798 int world_id); |
799 void OnVisualStateRequest(uint64_t key); | 799 void OnVisualStateRequest(uint64_t key); |
800 void OnSetEditableSelectionOffsets(int start, int end); | |
801 void OnSetCompositionFromExistingText( | |
802 int start, int end, | |
803 const std::vector<blink::WebCompositionUnderline>& underlines); | |
804 void OnExecuteNoValueEditCommand(const std::string& name); | 800 void OnExecuteNoValueEditCommand(const std::string& name); |
805 void OnExtendSelectionAndDelete(int before, int after); | |
806 void OnReload(bool bypass_cache); | 801 void OnReload(bool bypass_cache); |
807 void OnReloadLoFiImages(); | 802 void OnReloadLoFiImages(); |
808 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 803 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
809 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 804 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
810 void OnSnapshotAccessibilityTree(int callback_id); | 805 void OnSnapshotAccessibilityTree(int callback_id); |
811 void OnUpdateOpener(int opener_routing_id); | 806 void OnUpdateOpener(int opener_routing_id); |
812 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 807 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
813 void OnSetFrameOwnerProperties( | 808 void OnSetFrameOwnerProperties( |
814 const FrameOwnerProperties& frame_owner_properties); | 809 const FrameOwnerProperties& frame_owner_properties); |
815 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 810 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1276 bool has_accessed_initial_document_; | 1271 bool has_accessed_initial_document_; |
1277 | 1272 |
1278 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1273 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1279 | 1274 |
1280 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1275 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1281 }; | 1276 }; |
1282 | 1277 |
1283 } // namespace content | 1278 } // namespace content |
1284 | 1279 |
1285 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1280 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |