Index: components/nacl/renderer/ppb_nacl_private_impl.cc |
diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc |
index 634bb81b1428b8f5480d4072a7bff91d10d65d93..3e4304ea287bd593708db6e4e218bd0a607fcb8a 100644 |
--- a/components/nacl/renderer/ppb_nacl_private_impl.cc |
+++ b/components/nacl/renderer/ppb_nacl_private_impl.cc |
@@ -1326,6 +1326,8 @@ void DownloadNexeCompletion(const DownloadNexeRequest& request, |
void DownloadNexe(PP_Instance instance, |
const char* url, |
PP_FileHandle* out_handle, |
+ uint64_t* file_token_lo, |
+ uint64_t* file_token_hi, |
PP_CompletionCallback callback) { |
CHECK(url); |
CHECK(out_handle); |
@@ -1336,12 +1338,10 @@ void DownloadNexe(PP_Instance instance, |
request.start_time = base::Time::Now(); |
// Try the fast path for retrieving the file first. |
- uint64_t file_token_lo = 0; |
- uint64_t file_token_hi = 0; |
PP_FileHandle file_handle = OpenNaClExecutable(instance, |
url, |
- &file_token_lo, |
- &file_token_hi); |
+ file_token_lo, |
+ file_token_hi); |
if (file_handle != PP_kInvalidFileHandle) { |
DownloadNexeCompletion(request, |
file_handle, |