| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index 95950560d310ea1745882b842b1580b85294e2b2..f59ecb6b027480f7d312d240589fa97fa270441f 100644
|
| --- a/chrome/browser/chrome_browser_main.cc
|
| +++ b/chrome/browser/chrome_browser_main.cc
|
| @@ -236,7 +236,7 @@ PrefService* InitializeLocalState(
|
| TRACE_EVENT0("startup", "ChromeBrowserMainParts::InitializeLocalState")
|
| base::FilePath local_state_path;
|
| PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path);
|
| - bool local_state_file_exists = file_util::PathExists(local_state_path);
|
| + bool local_state_file_exists = base::PathExists(local_state_path);
|
|
|
| // Load local state. This includes the application locale so we know which
|
| // locale dll to load. This also causes local state prefs to be registered.
|
|
|