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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 int start, int end, | 711 int start, int end, |
712 const std::vector<blink::WebCompositionUnderline>& underlines); | 712 const std::vector<blink::WebCompositionUnderline>& underlines); |
713 void OnExecuteNoValueEditCommand(const std::string& name); | 713 void OnExecuteNoValueEditCommand(const std::string& name); |
714 void OnExtendSelectionAndDelete(int before, int after); | 714 void OnExtendSelectionAndDelete(int before, int after); |
715 void OnReload(bool ignore_cache); | 715 void OnReload(bool ignore_cache); |
716 void OnTextSurroundingSelectionRequest(size_t max_length); | 716 void OnTextSurroundingSelectionRequest(size_t max_length); |
717 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 717 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
718 void OnSnapshotAccessibilityTree(int callback_id); | 718 void OnSnapshotAccessibilityTree(int callback_id); |
719 void OnUpdateOpener(int opener_routing_id); | 719 void OnUpdateOpener(int opener_routing_id); |
720 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 720 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
721 void OnClearFocus(); | 721 void OnClearFocus(int focused_frame_routing_id); |
722 void OnTextTrackSettingsChanged( | 722 void OnTextTrackSettingsChanged( |
723 const FrameMsg_TextTrackSettings_Params& params); | 723 const FrameMsg_TextTrackSettings_Params& params); |
724 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 724 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
725 #if defined(OS_ANDROID) | 725 #if defined(OS_ANDROID) |
726 void OnSelectPopupMenuItems(bool canceled, | 726 void OnSelectPopupMenuItems(bool canceled, |
727 const std::vector<int>& selected_indices); | 727 const std::vector<int>& selected_indices); |
728 #elif defined(OS_MACOSX) | 728 #elif defined(OS_MACOSX) |
729 void OnSelectPopupMenuItem(int selected_index); | 729 void OnSelectPopupMenuItem(int selected_index); |
730 void OnCopyToFindPboard(); | 730 void OnCopyToFindPboard(); |
731 #endif | 731 #endif |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1070 #endif | 1070 #endif |
1071 | 1071 |
1072 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1072 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1073 | 1073 |
1074 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1074 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1075 }; | 1075 }; |
1076 | 1076 |
1077 } // namespace content | 1077 } // namespace content |
1078 | 1078 |
1079 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1079 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |