| 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); | 
| 782   void OnPaste(); | 783   void OnPaste(); | 
| 783 #if defined(OS_MACOSX) | 784 #if defined(OS_MACOSX) | 
| 784   void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 785   void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 
| 785 #endif | 786 #endif | 
| 786   void OnRedo(); | 787   void OnRedo(); | 
| 787   void OnReloadFrame(); | 788   void OnReloadFrame(); | 
| 788   void OnReplace(const string16& text); | 789   void OnReplace(const string16& text); | 
| 789   void OnReservePageIDRange(int size_of_range); | 790   void OnReservePageIDRange(int size_of_range); | 
| 790   void OnResetPageEncodingToDefault(); | 791   void OnResetPageEncodingToDefault(); | 
| 791   void OnScriptEvalRequest(const string16& frame_xpath, | 792   void OnScriptEvalRequest(const string16& frame_xpath, | 
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1154   // bunch of stuff, you should probably create a helper class and put your | 1155   // bunch of stuff, you should probably create a helper class and put your | 
| 1155   // data and methods on that to avoid bloating RenderView more.  You can use | 1156   // data and methods on that to avoid bloating RenderView more.  You can use | 
| 1156   // the Observer interface to filter IPC messages and receive frame change | 1157   // the Observer interface to filter IPC messages and receive frame change | 
| 1157   // notifications. | 1158   // notifications. | 
| 1158   // --------------------------------------------------------------------------- | 1159   // --------------------------------------------------------------------------- | 
| 1159 | 1160 | 
| 1160   DISALLOW_COPY_AND_ASSIGN(RenderView); | 1161   DISALLOW_COPY_AND_ASSIGN(RenderView); | 
| 1161 }; | 1162 }; | 
| 1162 | 1163 | 
| 1163 #endif  // CONTENT_RENDERER_RENDER_VIEW_H_ | 1164 #endif  // CONTENT_RENDERER_RENDER_VIEW_H_ | 
| OLD | NEW | 
|---|