diff options
Diffstat (limited to 'content/child/npapi')
-rw-r--r-- | content/child/npapi/plugin_url_fetcher.cc | 3 | ||||
-rw-r--r-- | content/child/npapi/plugin_url_fetcher.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/content/child/npapi/plugin_url_fetcher.cc b/content/child/npapi/plugin_url_fetcher.cc index fa85dd6..7359041 100644 --- a/content/child/npapi/plugin_url_fetcher.cc +++ b/content/child/npapi/plugin_url_fetcher.cc @@ -343,7 +343,8 @@ void PluginURLFetcher::OnCompletedRequest( bool was_ignored_by_handler, bool stale_copy_in_cache, const std::string& security_info, - const base::TimeTicks& completion_time) { + const base::TimeTicks& completion_time, + int64 total_transfer_size) { if (multipart_delegate_) { multipart_delegate_->OnCompletedRequest(); multipart_delegate_.reset(); diff --git a/content/child/npapi/plugin_url_fetcher.h b/content/child/npapi/plugin_url_fetcher.h index cf58813..4e5e2ff 100644 --- a/content/child/npapi/plugin_url_fetcher.h +++ b/content/child/npapi/plugin_url_fetcher.h @@ -64,7 +64,8 @@ class PluginURLFetcher : public webkit_glue::ResourceLoaderBridge::Peer { bool was_ignored_by_handler, bool stale_copy_in_cache, const std::string& security_info, - const base::TimeTicks& completion_time) OVERRIDE; + const base::TimeTicks& completion_time, + int64 total_transfer_size) OVERRIDE; PluginStreamUrl* plugin_stream_; GURL url_; |