Index: content/browser/renderer_host/pepper/pepper_file_message_filter.cc |
diff --git a/content/browser/renderer_host/pepper/pepper_file_message_filter.cc b/content/browser/renderer_host/pepper/pepper_file_message_filter.cc |
index 9212e6fb126e6281b1a54459db02d24e3d61e454..b02e4392127249b3e282044f44c8de7f10167859 100644 |
--- a/content/browser/renderer_host/pepper/pepper_file_message_filter.cc |
+++ b/content/browser/renderer_host/pepper/pepper_file_message_filter.cc |
@@ -219,10 +219,9 @@ void PepperFileMessageFilter::OnGetDirContents( |
file_util::FileEnumerator enumerator( |
full_path, false, |
jar (doing other things)
2012/08/06 18:27:02
nit: push line 221 onto the end of 220.
Haruki Sato
2012/08/06 23:22:18
Done.
|
- static_cast<file_util::FileEnumerator::FileType>( |
- file_util::FileEnumerator::FILES | |
- file_util::FileEnumerator::DIRECTORIES | |
- file_util::FileEnumerator::INCLUDE_DOT_DOT)); |
+ (file_util::FileEnumerator::FILES | |
+ file_util::FileEnumerator::DIRECTORIES | |
+ file_util::FileEnumerator::INCLUDE_DOT_DOT)); |
while (!enumerator.Next().empty()) { |
file_util::FileEnumerator::FindInfo info; |