| Index: components/nacl/renderer/plugin/pnacl_coordinator.h
|
| diff --git a/components/nacl/renderer/plugin/pnacl_coordinator.h b/components/nacl/renderer/plugin/pnacl_coordinator.h
|
| index 9215484b89d17d4fc4cc7975ef08171f0d80409a..06192da75b301f0f513dd8a5aeb9ae92175bdca1 100644
|
| --- a/components/nacl/renderer/plugin/pnacl_coordinator.h
|
| +++ b/components/nacl/renderer/plugin/pnacl_coordinator.h
|
| @@ -13,6 +13,7 @@
|
| #include "base/files/file.h"
|
| #include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "base/time/time.h"
|
| #include "components/nacl/renderer/plugin/nacl_subprocess.h"
|
| #include "components/nacl/renderer/plugin/plugin_error.h"
|
| #include "components/nacl/renderer/plugin/pnacl_resources.h"
|
| @@ -103,9 +104,9 @@ class PnaclCoordinator {
|
| // been created, this starts the translation. Translation starts two
|
| // subprocesses, one for llc and one for ld.
|
| void LoadCompiler();
|
| - void RunCompile(int32_t pp_error, int64_t compile_load_start_time);
|
| + void RunCompile(int32_t pp_error, base::TimeTicks compile_load_start_time);
|
| void LoadLinker(int32_t pp_error);
|
| - void RunLink(int32_t pp_error, int64_t ld_load_start_time);
|
| + void RunLink(int32_t pp_error, base::TimeTicks ld_load_start_time);
|
|
|
| // Invoked when translation is finished.
|
| void TranslateFinished(int32_t pp_error);
|
|
|