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

Unified Diff: third_party/WebKit/Source/platform/clipboard/ClipboardUtilitiesPosix.cpp

Issue 2390833002: reflow comments in platform/{animation,blob,clipboard,exported} (Closed)
Patch Set: Created 4 years, 2 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: 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 == '/';
}

Powered by Google App Engine
This is Rietveld 408576698