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

Unified Diff: webkit/fileapi/file_system_database_test_helper.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: webkit/fileapi/file_system_database_test_helper.cc
diff --git a/webkit/fileapi/file_system_database_test_helper.cc b/webkit/fileapi/file_system_database_test_helper.cc
index 28951d08bd35072229dfdcfb600c4997f6cfd0a9..3d66626e92ac056d406ec788eba352f12f2c0109 100644
--- a/webkit/fileapi/file_system_database_test_helper.cc
+++ b/webkit/fileapi/file_system_database_test_helper.cc
@@ -21,9 +21,8 @@ void CorruptDatabase(const FilePath& db_path,
size_t size) {
file_util::FileEnumerator file_enum(
db_path, false /* recursive */,
jar (doing other things) 2012/08/06 18:27:02 nit: push line 23 onto the end of line 22.
Haruki Sato 2012/08/06 23:22:18 Done.
- static_cast<file_util::FileEnumerator::FileType>(
- file_util::FileEnumerator::DIRECTORIES |
- file_util::FileEnumerator::FILES));
+ (file_util::FileEnumerator::DIRECTORIES |
+ file_util::FileEnumerator::FILES));
FilePath file_path;
FilePath picked_file_path;
uint64 picked_file_number = kuint64max;

Powered by Google App Engine
This is Rietveld 408576698