OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_VIEW_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 void OnExecuteEditCommand(const std::string& name, const std::string& value); | 772 void OnExecuteEditCommand(const std::string& name, const std::string& value); |
773 void OnFileChooserResponse(const std::vector<FilePath>& paths); | 773 void OnFileChooserResponse(const std::vector<FilePath>& paths); |
774 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); | 774 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); |
775 void OnFindReplyAck(); | 775 void OnFindReplyAck(); |
776 void OnEnableAccessibility(); | 776 void OnEnableAccessibility(); |
777 void OnInstallMissingPlugin(); | 777 void OnInstallMissingPlugin(); |
778 void OnMediaPlayerActionAt(const gfx::Point& location, | 778 void OnMediaPlayerActionAt(const gfx::Point& location, |
779 const WebKit::WebMediaPlayerAction& action); | 779 const WebKit::WebMediaPlayerAction& action); |
780 void OnMoveOrResizeStarted(); | 780 void OnMoveOrResizeStarted(); |
781 void OnNavigate(const ViewMsg_Navigate_Params& params); | 781 void OnNavigate(const ViewMsg_Navigate_Params& params); |
782 void OnNetworkStateChanged(bool online); | |
783 void OnPaste(); | 782 void OnPaste(); |
784 #if defined(OS_MACOSX) | 783 #if defined(OS_MACOSX) |
785 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 784 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
786 #endif | 785 #endif |
787 void OnRedo(); | 786 void OnRedo(); |
788 void OnReloadFrame(); | 787 void OnReloadFrame(); |
789 void OnReplace(const string16& text); | 788 void OnReplace(const string16& text); |
790 void OnReservePageIDRange(int size_of_range); | 789 void OnReservePageIDRange(int size_of_range); |
791 void OnResetPageEncodingToDefault(); | 790 void OnResetPageEncodingToDefault(); |
792 void OnScriptEvalRequest(const string16& frame_xpath, | 791 void OnScriptEvalRequest(const string16& frame_xpath, |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1155 // bunch of stuff, you should probably create a helper class and put your | 1154 // bunch of stuff, you should probably create a helper class and put your |
1156 // data and methods on that to avoid bloating RenderView more. You can use | 1155 // data and methods on that to avoid bloating RenderView more. You can use |
1157 // the Observer interface to filter IPC messages and receive frame change | 1156 // the Observer interface to filter IPC messages and receive frame change |
1158 // notifications. | 1157 // notifications. |
1159 // --------------------------------------------------------------------------- | 1158 // --------------------------------------------------------------------------- |
1160 | 1159 |
1161 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1160 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1162 }; | 1161 }; |
1163 | 1162 |
1164 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1163 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |