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 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 bool notify_result, | 806 bool notify_result, |
807 int world_id); | 807 int world_id); |
808 void OnVisualStateRequest(uint64_t key); | 808 void OnVisualStateRequest(uint64_t key); |
809 void OnSetEditableSelectionOffsets(int start, int end); | 809 void OnSetEditableSelectionOffsets(int start, int end); |
810 void OnSetCompositionFromExistingText( | 810 void OnSetCompositionFromExistingText( |
811 int start, int end, | 811 int start, int end, |
812 const std::vector<blink::WebCompositionUnderline>& underlines); | 812 const std::vector<blink::WebCompositionUnderline>& underlines); |
813 void OnExecuteNoValueEditCommand(const std::string& name); | 813 void OnExecuteNoValueEditCommand(const std::string& name); |
814 void OnExtendSelectionAndDelete(int before, int after); | 814 void OnExtendSelectionAndDelete(int before, int after); |
815 void OnReload(bool bypass_cache); | 815 void OnReload(bool bypass_cache); |
| 816 void OnDisableLoFiImages(); |
816 void OnReloadLoFiImages(); | 817 void OnReloadLoFiImages(); |
817 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 818 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
818 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 819 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
819 void OnSnapshotAccessibilityTree(int callback_id); | 820 void OnSnapshotAccessibilityTree(int callback_id); |
820 void OnUpdateOpener(int opener_routing_id); | 821 void OnUpdateOpener(int opener_routing_id); |
821 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 822 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
822 void OnSetFrameOwnerProperties( | 823 void OnSetFrameOwnerProperties( |
823 const blink::WebFrameOwnerProperties& frame_owner_properties); | 824 const blink::WebFrameOwnerProperties& frame_owner_properties); |
824 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 825 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
825 void OnSetFocusedFrame(); | 826 void OnSetFocusedFrame(); |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1301 mojom::FrameHostPtr frame_host_; | 1302 mojom::FrameHostPtr frame_host_; |
1302 | 1303 |
1303 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1304 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1304 | 1305 |
1305 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1306 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1306 }; | 1307 }; |
1307 | 1308 |
1308 } // namespace content | 1309 } // namespace content |
1309 | 1310 |
1310 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1311 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |