summaryrefslogtreecommitdiffstats
path: root/chrome/common/plugin_messages.h
diff options
context:
space:
mode:
authoryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-03 07:11:34 +0000
committeryurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-03 07:11:34 +0000
commit3d248b2db2eae7c805ada987f997caa0929700c7 (patch)
treee00b151dee03e241775e33f460b0585dd49b20ea /chrome/common/plugin_messages.h
parent53a5453c5ade1cadf95989a2102cf56873888e78 (diff)
downloadchromium_src-3d248b2db2eae7c805ada987f997caa0929700c7.zip
chromium_src-3d248b2db2eae7c805ada987f997caa0929700c7.tar.gz
chromium_src-3d248b2db2eae7c805ada987f997caa0929700c7.tar.bz2
Send resource load notifications from plugins to devtools agent. This is a part of a fix which would allow to inspect plugin resources.
BUG=2084 Review URL: http://codereview.chromium.org/435044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33672 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/plugin_messages.h')
-rw-r--r--chrome/common/plugin_messages.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/plugin_messages.h b/chrome/common/plugin_messages.h
index 0bfddee..eeea874 100644
--- a/chrome/common/plugin_messages.h
+++ b/chrome/common/plugin_messages.h
@@ -54,7 +54,7 @@ struct PluginHostMsg_URLRequest_Params {
};
struct PluginMsg_URLRequestReply_Params {
- int resource_id;
+ unsigned long resource_id;
GURL url;
bool notify_needed;
intptr_t notify_data;
@@ -62,7 +62,7 @@ struct PluginMsg_URLRequestReply_Params {
};
struct PluginMsg_DidReceiveResponseParams {
- int id;
+ unsigned long id;
std::string mime_type;
std::string headers;
uint32 expected_length;