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

Unified Diff: chrome/tools/profiles/generate_profile.cc

Issue 10855002: Change the type of file_type parameter to int, as the parameter actually takes or-ed bitmasks, (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
Index: chrome/tools/profiles/generate_profile.cc
diff --git a/chrome/tools/profiles/generate_profile.cc b/chrome/tools/profiles/generate_profile.cc
index ab7bbdf2096a1ebad8b902ce6b08e68fc2cc6d28..6f53a85a58971739e5e3bfda0d87dbf286e9c9d4 100644
--- a/chrome/tools/profiles/generate_profile.cc
+++ b/chrome/tools/profiles/generate_profile.cc
@@ -270,8 +270,7 @@ int main(int argc, const char* argv[]) {
file_util::FileEnumerator file_iterator(
profile.GetPath(), false,
jar (doing other things) 2012/08/06 18:27:02 nit: push line 272 onto the end of line 271.
Haruki Sato 2012/08/06 23:22:18 Done.
- static_cast<file_util::FileEnumerator::FileType>(
- file_util::FileEnumerator::FILES));
+ file_util::FileEnumerator::FILES);
FilePath path = file_iterator.Next();
while (!path.empty()) {
FilePath dst_file = dst_dir.Append(path.BaseName());

Powered by Google App Engine
This is Rietveld 408576698