OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 | 13 |
14 #include "base/clipboard.h" | 14 #include "base/clipboard.h" |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/gfx/rect.h" | 16 #include "base/gfx/rect.h" |
17 #include "base/gfx/native_widget_types.h" | 17 #include "base/gfx/native_widget_types.h" |
18 #include "base/shared_memory.h" | 18 #include "base/shared_memory.h" |
19 #include "chrome/common/ipc_message_macros.h" | 19 #include "chrome/common/ipc_message_macros.h" |
20 #include "chrome/common/transport_dib.h" | 20 #include "chrome/common/transport_dib.h" |
21 #include "skia/include/SkBitmap.h" | 21 #include "third_party/skia/include/core/SkBitmap.h" |
22 #include "webkit/glue/dom_operations.h" | 22 #include "webkit/glue/dom_operations.h" |
23 #include "webkit/glue/webappcachecontext.h" | 23 #include "webkit/glue/webappcachecontext.h" |
24 #include "webkit/glue/webcursor.h" | 24 #include "webkit/glue/webcursor.h" |
25 #include "webkit/glue/webplugin.h" | 25 #include "webkit/glue/webplugin.h" |
26 | 26 |
27 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes | 27 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes |
28 // more sense with our current design. | 28 // more sense with our current design. |
29 | 29 |
30 //----------------------------------------------------------------------------- | 30 //----------------------------------------------------------------------------- |
31 // RenderView messages | 31 // RenderView messages |
(...skipping 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 // by ViewHostMsg_OpenChannelToExtension. | 1354 // by ViewHostMsg_OpenChannelToExtension. |
1355 IPC_MESSAGE_ROUTED2(ViewHostMsg_ExtensionPostMessage, | 1355 IPC_MESSAGE_ROUTED2(ViewHostMsg_ExtensionPostMessage, |
1356 int /* port_id */, | 1356 int /* port_id */, |
1357 std::string /* message */) | 1357 std::string /* message */) |
1358 | 1358 |
1359 // Message to show a popup menu using native cocoa controls (Mac only). | 1359 // Message to show a popup menu using native cocoa controls (Mac only). |
1360 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, | 1360 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, |
1361 ViewHostMsg_ShowPopup_Params) | 1361 ViewHostMsg_ShowPopup_Params) |
1362 | 1362 |
1363 IPC_END_MESSAGES(ViewHost) | 1363 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |