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 // Multiply-included message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "content/common/common_param_traits.h" | |
12 #include "content/common/indexed_db_key.h" | 11 #include "content/common/indexed_db_key.h" |
13 #include "content/common/indexed_db_param_traits.h" | 12 #include "content/common/indexed_db_param_traits.h" |
14 #include "content/common/serialized_script_value.h" | 13 #include "content/common/serialized_script_value.h" |
| 14 #include "content/public/common/common_param_traits.h" |
15 #include "ipc/ipc_message_macros.h" | 15 #include "ipc/ipc_message_macros.h" |
16 #include "webkit/plugins/webplugininfo.h" | 16 #include "webkit/plugins/webplugininfo.h" |
17 | 17 |
18 #define IPC_MESSAGE_START UtilityMsgStart | 18 #define IPC_MESSAGE_START UtilityMsgStart |
19 | 19 |
20 //------------------------------------------------------------------------------ | 20 //------------------------------------------------------------------------------ |
21 // Utility process messages: | 21 // Utility process messages: |
22 // These are messages from the browser to the utility process. | 22 // These are messages from the browser to the utility process. |
23 | 23 |
24 // Tell the utility process to extract the given IDBKeyPath from the | 24 // Tell the utility process to extract the given IDBKeyPath from the |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 #if defined(OS_POSIX) | 69 #if defined(OS_POSIX) |
70 // Notifies the browser when a plugin failed to load so the two processes can | 70 // Notifies the browser when a plugin failed to load so the two processes can |
71 // keep the canonical list in sync. | 71 // keep the canonical list in sync. |
72 IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadPluginFailed, | 72 IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadPluginFailed, |
73 FilePath /* path of plugin */) | 73 FilePath /* path of plugin */) |
74 | 74 |
75 // Notifies the browser that a plugin in the vector sent by it has been loaded. | 75 // Notifies the browser that a plugin in the vector sent by it has been loaded. |
76 IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadedPlugin, | 76 IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadedPlugin, |
77 webkit::WebPluginInfo /* plugin info */) | 77 webkit::WebPluginInfo /* plugin info */) |
78 #endif // OS_POSIX | 78 #endif // OS_POSIX |
OLD | NEW |