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

Unified Diff: webkit/browser/fileapi/local_file_util_unittest.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
Index: webkit/browser/fileapi/local_file_util_unittest.cc
diff --git a/webkit/browser/fileapi/local_file_util_unittest.cc b/webkit/browser/fileapi/local_file_util_unittest.cc
index 1eb3792911f70e73ade13eadb4c1956f6d20a367..46f2e9a06f7f47981aa2fd5b7b9110d5bba62b79 100644
--- a/webkit/browser/fileapi/local_file_util_unittest.cc
+++ b/webkit/browser/fileapi/local_file_util_unittest.cc
@@ -74,7 +74,7 @@ class LocalFileUtilTest : public testing::Test {
}
bool FileExists(const char *file_name) {
- return file_util::PathExists(LocalPath(file_name)) &&
+ return base::PathExists(LocalPath(file_name)) &&
!file_util::DirectoryExists(LocalPath(file_name));
}
« no previous file with comments | « webkit/browser/fileapi/local_file_stream_writer_unittest.cc ('k') | webkit/browser/fileapi/native_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698