OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/gfx/rect.h" | 16 #include "base/gfx/rect.h" |
16 #include "base/gfx/native_widget_types.h" | 17 #include "base/gfx/native_widget_types.h" |
17 #include "base/shared_memory.h" | 18 #include "base/shared_memory.h" |
18 #include "chrome/common/ipc_message_macros.h" | 19 #include "chrome/common/ipc_message_macros.h" |
19 #include "chrome/common/transport_dib.h" | 20 #include "chrome/common/transport_dib.h" |
20 #include "skia/include/SkBitmap.h" | 21 #include "skia/include/SkBitmap.h" |
21 #include "webkit/glue/dom_operations.h" | 22 #include "webkit/glue/dom_operations.h" |
22 #include "webkit/glue/webcursor.h" | 23 #include "webkit/glue/webcursor.h" |
23 #include "webkit/glue/webplugin.h" | 24 #include "webkit/glue/webplugin.h" |
24 | 25 |
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, | 1298 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, |
1298 std::string /* extension_id */, | 1299 std::string /* extension_id */, |
1299 int /* port_id */) | 1300 int /* port_id */) |
1300 | 1301 |
1301 // Send a message to an extension process. The handle is the value returned | 1302 // Send a message to an extension process. The handle is the value returned |
1302 // by ViewHostMsg_OpenChannelToExtension. | 1303 // by ViewHostMsg_OpenChannelToExtension. |
1303 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, | 1304 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, |
1304 int /* port_id */, | 1305 int /* port_id */, |
1305 std::string /* message */) | 1306 std::string /* message */) |
1306 IPC_END_MESSAGES(ViewHost) | 1307 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |