Index: ppapi/native_client/src/trusted/plugin/plugin.cc |
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.cc b/ppapi/native_client/src/trusted/plugin/plugin.cc |
index cd5dfbf06cd2e37d200376e7d82ec66da31ee7e6..5d311288c0f84ef5635c6639307d5b9aac915d9a 100644 |
--- a/ppapi/native_client/src/trusted/plugin/plugin.cc |
+++ b/ppapi/native_client/src/trusted/plugin/plugin.cc |
@@ -1185,7 +1185,8 @@ void Plugin::ProcessNaClManifest(const nacl::string& manifest_json) { |
DOWNLOAD_TO_FILE, |
open_callback, |
true, |
- &UpdateDownloadProgress)); |
+ &UpdateDownloadProgress, |
+ true)); |
} |
return; |
} |
@@ -1230,7 +1231,8 @@ void Plugin::RequestNaClManifest(const nacl::string& url) { |
DOWNLOAD_TO_BUFFER, |
open_callback, |
false, |
- NULL)); |
+ NULL, |
+ true)); |
} else { |
pp::CompletionCallback open_callback = |
callback_factory_.NewCallback(&Plugin::NaClManifestFileDidOpen); |
@@ -1239,7 +1241,8 @@ void Plugin::RequestNaClManifest(const nacl::string& url) { |
DOWNLOAD_TO_FILE, |
open_callback, |
false, |
- NULL)); |
+ NULL, |
+ true)); |
} |
} |
@@ -1331,7 +1334,8 @@ bool Plugin::StreamAsFile(const nacl::string& url, |
DOWNLOAD_TO_FILE, |
open_callback, |
true, |
- &UpdateDownloadProgress); |
+ &UpdateDownloadProgress, |
+ true); |
} |