Chromium Code Reviews| Index: net/base/filename_util_internal.cc |
| diff --git a/net/base/filename_util_internal.cc b/net/base/filename_util_internal.cc |
| index 49b6a3db923d52fef031f1a666563422241dc793..7248b65257601101eea5237a79978e6028196274 100644 |
| --- a/net/base/filename_util_internal.cc |
| +++ b/net/base/filename_util_internal.cc |
| @@ -135,10 +135,11 @@ bool IsReservedName(const base::FilePath::StringType& filename) { |
| return true; |
| } |
| - static const char* const magic_names[] = { |
| - // These file names are used by the "Customize folder" feature of the shell. |
| - "desktop.ini", |
| - "thumbs.db", |
| + static const char* const magic_names[] = {// These file names are used by the |
| + // "Customize folder" feature of the |
| + // shell. |
| + "desktop.ini", |
| + "thumbs.db", |
|
Ryan Sleevi
2014/10/11 02:04:47
Probably worth a bug here.
jkarlin
2014/10/16 00:19:32
Issued. https://code.google.com/p/chromium/issues/
jkarlin
2014/11/11 19:01:43
This one was supposed to have been fixed but isn't
jkarlin
2014/11/11 19:34:48
Okay, fixed upstream in clang-format r221699 but w
|
| }; |
| for (size_t i = 0; i < arraysize(magic_names); ++i) { |