| 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 const FilePath& local_directory_name); | 871 const FilePath& local_directory_name); |
| 872 void OnHandleMessageFromExternalHost(const std::string& message, | 872 void OnHandleMessageFromExternalHost(const std::string& message, |
| 873 const std::string& origin, | 873 const std::string& origin, |
| 874 const std::string& target); | 874 const std::string& target); |
| 875 void OnInstallMissingPlugin(); | 875 void OnInstallMissingPlugin(); |
| 876 void OnDisplayPrerenderedPage(); | 876 void OnDisplayPrerenderedPage(); |
| 877 void OnMediaPlayerActionAt(const gfx::Point& location, | 877 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 878 const WebKit::WebMediaPlayerAction& action); | 878 const WebKit::WebMediaPlayerAction& action); |
| 879 void OnMoveOrResizeStarted(); | 879 void OnMoveOrResizeStarted(); |
| 880 void OnNavigate(const ViewMsg_Navigate_Params& params); | 880 void OnNavigate(const ViewMsg_Navigate_Params& params); |
| 881 void OnNetworkStateChanged(bool online); |
| 881 void OnNotifyRendererViewType(ViewType::Type view_type); | 882 void OnNotifyRendererViewType(ViewType::Type view_type); |
| 882 void OnPaste(); | 883 void OnPaste(); |
| 883 #if defined(OS_MACOSX) | 884 #if defined(OS_MACOSX) |
| 884 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 885 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
| 885 #endif | 886 #endif |
| 886 void OnRedo(); | 887 void OnRedo(); |
| 887 void OnReloadFrame(); | 888 void OnReloadFrame(); |
| 888 void OnReplace(const string16& text); | 889 void OnReplace(const string16& text); |
| 889 void OnReservePageIDRange(int size_of_range); | 890 void OnReservePageIDRange(int size_of_range); |
| 890 void OnResetPageEncodingToDefault(); | 891 void OnResetPageEncodingToDefault(); |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 // bunch of stuff, you should probably create a helper class and put your | 1445 // bunch of stuff, you should probably create a helper class and put your |
| 1445 // data and methods on that to avoid bloating RenderView more. You can use | 1446 // data and methods on that to avoid bloating RenderView more. You can use |
| 1446 // the Observer interface to filter IPC messages and receive frame change | 1447 // the Observer interface to filter IPC messages and receive frame change |
| 1447 // notifications. | 1448 // notifications. |
| 1448 // --------------------------------------------------------------------------- | 1449 // --------------------------------------------------------------------------- |
| 1449 | 1450 |
| 1450 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1451 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1451 }; | 1452 }; |
| 1452 | 1453 |
| 1453 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1454 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |