| 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 878e1ab99da9b35d77481e036cfaa15654f0175c..03cb502c60be49b087719b9ed0b52f9e06132faf 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);
|
|
|