| Index: chrome/browser/profiles/profile_destroyer.cc
|
| diff --git a/chrome/browser/profiles/profile_destroyer.cc b/chrome/browser/profiles/profile_destroyer.cc
|
| index 532b3918d1311ea18c71b01dda0ae31b48fd19b0..809703f7c4d7fd493ca172876fce4c682836c087 100644
|
| --- a/chrome/browser/profiles/profile_destroyer.cc
|
| +++ b/chrome/browser/profiles/profile_destroyer.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/thread_task_runner_handle.h"
|
| #include "base/trace_event/trace_event.h"
|
| +#include "build/build_config.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "content/public/browser/render_process_host.h"
|
|
|
| @@ -18,9 +19,9 @@ namespace {
|
| #if defined(OS_ANDROID)
|
| // Set the render host waiting time to 5s on Android, that's the same
|
| // as an "Application Not Responding" timeout.
|
| -const int64 kTimerDelaySeconds = 5;
|
| +const int64_t kTimerDelaySeconds = 5;
|
| #else
|
| -const int64 kTimerDelaySeconds = 1;
|
| +const int64_t kTimerDelaySeconds = 1;
|
| #endif
|
|
|
| } // namespace
|
|
|