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

Unified Diff: base/file_util_proxy.cc

Issue 3357003: Change file_util_proxy::Entry::isDirectory to is_directory. (Closed)
Patch Set: Created 10 years, 4 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 | « base/file_util_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_util_proxy.cc
diff --git a/base/file_util_proxy.cc b/base/file_util_proxy.cc
index e7c02634b17abe646e3e118116b51b42bd7a644f..d356ed30871263897dbc9ab5601d97923fbfe0f4 100644
--- a/base/file_util_proxy.cc
+++ b/base/file_util_proxy.cc
@@ -377,7 +377,7 @@ class RelayReadDirectory : public MessageLoopRelay {
base::file_util_proxy::Entry entry;
file_util::FileEnumerator::FindInfo info;
file_enum.GetFindInfo(&info);
- entry.isDirectory = file_enum.IsDirectory(info);
+ entry.is_directory = file_enum.IsDirectory(info);
// This will just give the entry's name instead of entire path
// if we use current.value().
entry.name = file_util::FileEnumerator::GetFilename(info).value();
« no previous file with comments | « base/file_util_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698