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

Unified Diff: webkit/browser/fileapi/local_file_util_unittest.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the 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 | « webkit/browser/fileapi/dump_file_system.cc ('k') | webkit/browser/fileapi/native_file_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 46f2e9a06f7f47981aa2fd5b7b9110d5bba62b79..0866f1eb6cbc45c7ebbcced85b51264ce3845d0a 100644
--- a/webkit/browser/fileapi/local_file_util_unittest.cc
+++ b/webkit/browser/fileapi/local_file_util_unittest.cc
@@ -75,11 +75,11 @@ class LocalFileUtilTest : public testing::Test {
bool FileExists(const char *file_name) {
return base::PathExists(LocalPath(file_name)) &&
- !file_util::DirectoryExists(LocalPath(file_name));
+ !base::DirectoryExists(LocalPath(file_name));
}
bool DirectoryExists(const char *file_name) {
- return file_util::DirectoryExists(LocalPath(file_name));
+ return base::DirectoryExists(LocalPath(file_name));
}
int64 GetSize(const char *file_name) {
« no previous file with comments | « webkit/browser/fileapi/dump_file_system.cc ('k') | webkit/browser/fileapi/native_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698