diff options
Diffstat (limited to 'chrome_frame/chrome_tab.cc')
-rw-r--r-- | chrome_frame/chrome_tab.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/chrome_tab.cc b/chrome_frame/chrome_tab.cc index a563ded..177b9ac 100644 --- a/chrome_frame/chrome_tab.cc +++ b/chrome_frame/chrome_tab.cc @@ -344,12 +344,12 @@ HRESULT SetupUserLevelHelper() { if (PathService::Get(base::FILE_MODULE, &module_path)) { module_path = module_path.DirName(); helper_path = module_path.Append(kChromeFrameHelperExe); - if (!file_util::PathExists(helper_path)) { + if (!base::PathExists(helper_path)) { // If we can't find the helper in the current directory, try looking // one up (this is the layout in the build output folder). module_path = module_path.DirName(); helper_path = module_path.Append(kChromeFrameHelperExe); - DCHECK(file_util::PathExists(helper_path)) << + DCHECK(base::PathExists(helper_path)) << "Could not find chrome_frame_helper.exe."; } @@ -357,7 +357,7 @@ HRESULT SetupUserLevelHelper() { HWND old_window = FindWindow(kChromeFrameHelperWindowClassName, kChromeFrameHelperWindowName); - if (file_util::PathExists(helper_path)) { + if (base::PathExists(helper_path)) { std::wstring helper_path_cmd(L"\""); helper_path_cmd += helper_path.value(); helper_path_cmd += L"\" "; |