diff options
Diffstat (limited to 'win8/test/metro_registration_helper.cc')
-rw-r--r-- | win8/test/metro_registration_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/test/metro_registration_helper.cc b/win8/test/metro_registration_helper.cc index dd07cf6..202eb73 100644 --- a/win8/test/metro_registration_helper.cc +++ b/win8/test/metro_registration_helper.cc @@ -43,7 +43,7 @@ bool RegisterTestDefaultBrowser() { base::FilePath chrome_exe(dir.Append(kChromeExe)); base::FilePath registrar(dir.Append(kRegistrar)); - if (!file_util::PathExists(chrome_exe) || !file_util::PathExists(registrar)) { + if (!base::PathExists(chrome_exe) || !base::PathExists(registrar)) { LOG(ERROR) << "Could not locate " << kChromeExe << " or " << kRegistrar; return false; } |