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

Unified Diff: tools/android/md5sum/md5sum.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 | « third_party/zlib/google/zip_reader_unittest.cc ('k') | ui/shell_dialogs/gtk/select_file_dialog_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/md5sum/md5sum.cc
diff --git a/tools/android/md5sum/md5sum.cc b/tools/android/md5sum/md5sum.cc
index 8543fb69950adb7b60053a24395649a2a4ec21e1..bc4ca071b8cd08bc8a6db4a411777ad422ce86ed 100644
--- a/tools/android/md5sum/md5sum.cc
+++ b/tools/android/md5sum/md5sum.cc
@@ -53,7 +53,7 @@ std::set<std::string> MakeFileSet(const char** files) {
std::set<std::string> file_set;
for (const char** file = files; *file; ++file) {
base::FilePath file_path(*file);
- if (file_util::DirectoryExists(file_path)) {
+ if (base::DirectoryExists(file_path)) {
base::FileEnumerator file_enumerator(
file_path, true /* recurse */, base::FileEnumerator::FILES);
for (base::FilePath child, empty;
« no previous file with comments | « third_party/zlib/google/zip_reader_unittest.cc ('k') | ui/shell_dialogs/gtk/select_file_dialog_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698