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

Unified Diff: chrome/common/plugin_messages_internal.h

Issue 435044: Send resource load notifications from plugins to devtools agent (Closed)
Patch Set: Sync with trunk Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/plugin_messages.h ('k') | chrome/plugin/webplugin_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/plugin_messages_internal.h
diff --git a/chrome/common/plugin_messages_internal.h b/chrome/common/plugin_messages_internal.h
index 48c3bcfc9c362cf2552be8891a224467b84976c4..923a75050f15b12b5233be1dd0b00bae097fdff3 100644
--- a/chrome/common/plugin_messages_internal.h
+++ b/chrome/common/plugin_messages_internal.h
@@ -232,22 +232,22 @@ IPC_BEGIN_MESSAGES(Plugin)
WebCursor /* cursor type*/)
IPC_SYNC_MESSAGE_ROUTED2_0(PluginMsg_WillSendRequest,
- int /* id */,
+ unsigned long /* id */,
GURL /* url */)
IPC_MESSAGE_ROUTED1(PluginMsg_DidReceiveResponse,
PluginMsg_DidReceiveResponseParams)
IPC_MESSAGE_ROUTED3(PluginMsg_DidReceiveData,
- int /* id */,
+ unsigned long /* id */,
std::vector<char> /* buffer */,
int /* data_offset */)
IPC_MESSAGE_ROUTED1(PluginMsg_DidFinishLoading,
- int /* id */)
+ unsigned long /* id */)
IPC_MESSAGE_ROUTED1(PluginMsg_DidFail,
- int /* id */)
+ unsigned long /* id */)
IPC_MESSAGE_ROUTED5(PluginMsg_SendJavaScriptStream,
GURL /* url */,
@@ -366,7 +366,7 @@ IPC_BEGIN_MESSAGES(PluginHost)
intptr_t /* notify_data */)
IPC_MESSAGE_ROUTED2(PluginHostMsg_DeferResourceLoading,
- int /* resource_id */,
+ unsigned long /* resource_id */,
bool /* defer */)
IPC_SYNC_MESSAGE_CONTROL1_0(PluginHostMsg_SetException,
« no previous file with comments | « chrome/common/plugin_messages.h ('k') | chrome/plugin/webplugin_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698