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 3f5685df07678b96d4082be323c11bdb8c509f0e..9a8c958fd6c8eae2da23c286efcce4ba3708d6c4 100644 |
--- a/components/nacl/renderer/ppb_nacl_private_impl.cc |
+++ b/components/nacl/renderer/ppb_nacl_private_impl.cc |
@@ -1319,6 +1319,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); |
@@ -1329,12 +1331,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, |