summaryrefslogtreecommitdiffstats
path: root/webkit/glue/plugins/plugin_stream_url.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/plugins/plugin_stream_url.h')
-rw-r--r--webkit/glue/plugins/plugin_stream_url.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/glue/plugins/plugin_stream_url.h b/webkit/glue/plugins/plugin_stream_url.h
index 01a6da9..8c03edc 100644
--- a/webkit/glue/plugins/plugin_stream_url.h
+++ b/webkit/glue/plugins/plugin_stream_url.h
@@ -43,7 +43,7 @@ class PluginStreamUrl : public PluginStream,
//
// WebPluginResourceClient methods
//
- void WillSendRequest(const GURL& url);
+ void WillSendRequest(const GURL& url, int http_status_code);
void DidReceiveResponse(const std::string& mime_type,
const std::string& headers,
uint32 expected_length,
@@ -55,7 +55,9 @@ class PluginStreamUrl : public PluginStream,
bool IsMultiByteResponseExpected() {
return seekable();
}
-
+ int ResourceId() {
+ return id_;
+ }
private:
GURL url_;