Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Side by Side Diff: content/common/utility_messages.h

Issue 8368004: Move common_param_traits and webkit_param_traits to content/public/common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/resource_messages.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698