| Index: third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp
|
| diff --git a/third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp b/third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp
|
| index 72b5f3f7a1c06f6fccf1d17a2c27b4f380c8388f..90900d1e1ae0c540fa5b0a316461cdfc7dfec54a 100644
|
| --- a/third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp
|
| +++ b/third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp
|
| @@ -30,14 +30,15 @@
|
|
|
| namespace blink {
|
|
|
| -// On POSIX systems, the typical filename length limit is 255 character units. HFS+'s limit is
|
| -// actually 255 Unicode characters using Apple's modification of Normzliation Form D, but the
|
| -// differences aren't really worth dealing with here.
|
| +// On POSIX systems, the typical filename length limit is 255 character units.
|
| +// HFS+'s limit is actually 255 Unicode characters using Apple's modification of
|
| +// Normzliation Form D, but the differences aren't really worth dealing with
|
| +// here.
|
| static const unsigned maxFilenameLength = 255;
|
|
|
| static bool isInvalidFileCharacter(UChar c) {
|
| - // HFS+ disallows '/' and Linux systems also disallow null. For sanity's sake we'll also
|
| - // disallow control characters.
|
| + // HFS+ disallows '/' and Linux systems also disallow null. For sanity's sake
|
| + // we'll also disallow control characters.
|
| return c < ' ' || c == 0x7F || c == '/';
|
| }
|
|
|
|
|