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

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

Issue 8440042: Send the index in the canonical list over IPC when using the OOP plugin loader. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: uint32_t Created 9 years, 1 month 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/browser/plugin_loader_posix_unittest.cc ('k') | content/utility/utility_thread_impl.cc » ('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"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 int /* id */) 62 int /* id */)
63 63
64 // Reply when the utility process has finished injecting an IDBKey into 64 // Reply when the utility process has finished injecting an IDBKey into
65 // a SerializedScriptValue. 65 // a SerializedScriptValue.
66 IPC_MESSAGE_CONTROL1(UtilityHostMsg_InjectIDBKey_Finished, 66 IPC_MESSAGE_CONTROL1(UtilityHostMsg_InjectIDBKey_Finished,
67 content::SerializedScriptValue /* new value */) 67 content::SerializedScriptValue /* new value */)
68 68
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_CONTROL2_0(UtilityHostMsg_LoadPluginFailed,
73 uint32_t /* index in the vector */,
73 FilePath /* path of plugin */) 74 FilePath /* path of plugin */)
74 75
75 // 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.
76 IPC_SYNC_MESSAGE_CONTROL1_0(UtilityHostMsg_LoadedPlugin, 77 IPC_SYNC_MESSAGE_CONTROL2_0(UtilityHostMsg_LoadedPlugin,
78 uint32_t /* index in the vector */,
77 webkit::WebPluginInfo /* plugin info */) 79 webkit::WebPluginInfo /* plugin info */)
78 #endif // OS_POSIX 80 #endif // OS_POSIX
OLDNEW
« no previous file with comments | « content/browser/plugin_loader_posix_unittest.cc ('k') | content/utility/utility_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698