| Index: chrome/app/chrome_main_delegate.cc
|
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
|
| index ef955cfa0aa811e9d4dd78dbedf9257b244f1c17..58a07e137f2d4c028bc8bae640d68fa1e0f828f5 100644
|
| --- a/chrome/app/chrome_main_delegate.cc
|
| +++ b/chrome/app/chrome_main_delegate.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/app/chrome_main_delegate.h"
|
|
|
| #include "base/command_line.h"
|
| +#include "base/cpu.h"
|
| #include "base/files/file_path.h"
|
| #include "base/i18n/rtl.h"
|
| #include "base/lazy_instance.h"
|
| @@ -648,6 +649,11 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
| #if defined(OS_WIN)
|
| child_process_logging::Init();
|
| #endif
|
| +#if defined(ARCH_CPU_ARM_FAMILY) && (defined(OS_ANDROID) || defined(OS_LINUX))
|
| + // Create an instance of the CPU class to parse /proc/cpuinfo and cache
|
| + // cpu_brand info.
|
| + base::CPU cpu_info;
|
| +#endif
|
|
|
| // Initialize the user data dir for any process type that needs it.
|
| if (chrome::ProcessNeedsProfileDir(process_type))
|
|
|