Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(653)

Unified Diff: chrome_frame/chrome_tab.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/chrome_launcher_utils.cc ('k') | chrome_frame/simple_resource_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_tab.cc
diff --git a/chrome_frame/chrome_tab.cc b/chrome_frame/chrome_tab.cc
index a563dedd379d3d11a4b0b0f342efe17e2f9b4a0b..177b9ac2a9349ed7d6f12f7ce4212471b3ff5ef8 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"\" ";
« no previous file with comments | « chrome_frame/chrome_launcher_utils.cc ('k') | chrome_frame/simple_resource_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698