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

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

Issue 8980002: Move indexeddb code to its own directory inside of content/{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
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/indexed_db_key.h" 11 #include "content/common/indexed_db/indexed_db_key.h"
12 #include "content/common/indexed_db_param_traits.h" 12 #include "content/common/indexed_db/indexed_db_param_traits.h"
13 #include "content/public/common/common_param_traits.h" 13 #include "content/public/common/common_param_traits.h"
14 #include "content/public/common/serialized_script_value.h" 14 #include "content/public/common/serialized_script_value.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.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // keep the canonical list in sync. 71 // keep the canonical list in sync.
72 IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadPluginFailed, 72 IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadPluginFailed,
73 uint32_t /* index in the vector */, 73 uint32_t /* index in the vector */,
74 FilePath /* path of plugin */) 74 FilePath /* path of plugin */)
75 75
76 // Notifies the browser that a plugin in the vector sent by it has been loaded. 76 // Notifies the browser that a plugin in the vector sent by it has been loaded.
77 IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadedPlugin, 77 IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadedPlugin,
78 uint32_t /* index in the vector */, 78 uint32_t /* index in the vector */,
79 webkit::WebPluginInfo /* plugin info */) 79 webkit::WebPluginInfo /* plugin info */)
80 #endif // OS_POSIX 80 #endif // OS_POSIX
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698