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

Unified Diff: chrome_frame/test_utils.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/test/test_with_web_server.cc ('k') | chromeos/chromeos_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test_utils.cc
diff --git a/chrome_frame/test_utils.cc b/chrome_frame/test_utils.cc
index 0b9989667940deee0ee03fd70ecd01bfdc26aaff..a4737327722d3ca8d95e74e27e7e63e52f2b1572 100644
--- a/chrome_frame/test_utils.cc
+++ b/chrome_frame/test_utils.cc
@@ -36,12 +36,12 @@ base::FilePath GetChromeFrameBuildPath() {
base::FilePath dll_path = build_path.Append(kChromeFrameDllName);
- if (!file_util::PathExists(dll_path)) {
+ if (!base::PathExists(dll_path)) {
// Well, dang.. try looking in the current directory.
dll_path = build_path.Append(kChromeFrameDllName);
}
- if (!file_util::PathExists(dll_path)) {
+ if (!base::PathExists(dll_path)) {
// No luck, return something empty.
dll_path = base::FilePath();
}
« no previous file with comments | « chrome_frame/test/test_with_web_server.cc ('k') | chromeos/chromeos_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698