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 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 OnReload(bool bypass_cache); | 871 void OnReload(bool bypass_cache); |
872 void OnReloadLoFiImages(); | 872 void OnReloadLoFiImages(); |
873 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 873 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
874 void OnFocusedFormFieldDataRequest(int request_id); | 874 void OnFocusedFormFieldDataRequest(int request_id); |
875 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 875 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
876 void OnSnapshotAccessibilityTree(int callback_id); | 876 void OnSnapshotAccessibilityTree(int callback_id); |
| 877 void OnExtractSmartClipData(int callback_id, const gfx::Rect& rect); |
877 void OnUpdateOpener(int opener_routing_id); | 878 void OnUpdateOpener(int opener_routing_id); |
878 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 879 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
879 void OnSetFrameOwnerProperties( | 880 void OnSetFrameOwnerProperties( |
880 const FrameOwnerProperties& frame_owner_properties); | 881 const FrameOwnerProperties& frame_owner_properties); |
881 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 882 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
882 void OnSetFocusedFrame(); | 883 void OnSetFocusedFrame(); |
883 void OnTextTrackSettingsChanged( | 884 void OnTextTrackSettingsChanged( |
884 const FrameMsg_TextTrackSettings_Params& params); | 885 const FrameMsg_TextTrackSettings_Params& params); |
885 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 886 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
886 void OnCommitNavigation(const ResourceResponseHead& response, | 887 void OnCommitNavigation(const ResourceResponseHead& response, |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1391 int enabled_bindings_ = 0; | 1392 int enabled_bindings_ = 0; |
1392 | 1393 |
1393 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1394 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1394 | 1395 |
1395 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1396 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1396 }; | 1397 }; |
1397 | 1398 |
1398 } // namespace content | 1399 } // namespace content |
1399 | 1400 |
1400 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1401 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |