Index: components/nacl/renderer/nexe_load_manager.h |
diff --git a/components/nacl/renderer/nexe_load_manager.h b/components/nacl/renderer/nexe_load_manager.h |
index 5e0eca96ccd8f6908d7eef0385e8b6069816b297..e7864f1aa6cbf628ed135547bc3103f6883a1628 100644 |
--- a/components/nacl/renderer/nexe_load_manager.h |
+++ b/components/nacl/renderer/nexe_load_manager.h |
@@ -11,6 +11,8 @@ |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
+#include "base/platform_file.h" |
+#include "base/time/time.h" |
#include "ppapi/c/private/ppb_nacl_private.h" |
#include "url/gurl.h" |
@@ -31,11 +33,11 @@ class NexeLoadManager { |
~NexeLoadManager(); |
void NexeFileDidOpen(int32_t pp_error, |
- int32_t fd, |
+ base::PlatformFile file, |
int32_t http_status, |
int64_t nexe_bytes_read, |
const std::string& url, |
- int64_t time_since_open); |
+ base::TimeDelta time_since_open); |
void ReportLoadSuccess(const std::string& url, |
uint64_t loaded_bytes, |
uint64_t total_bytes); |