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

Unified Diff: third_party/WebKit/Source/platform/MIMETypeRegistry.cpp

Issue 2388303002: reflow comments in platform/ (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/MIMETypeRegistry.cpp
diff --git a/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp b/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
index ea70d62f5cba5d096a730d279c6a5d7e5cf5dac1..6f659ff6b28d2315427a7b7a907d85744dc20744 100644
--- a/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
+++ b/third_party/WebKit/Source/platform/MIMETypeRegistry.cpp
@@ -100,10 +100,10 @@ bool MIMETypeRegistry::isSupportedMediaSourceMIMEType(const String& mimeType,
}
bool MIMETypeRegistry::isJavaAppletMIMEType(const String& mimeType) {
- // Since this set is very limited and is likely to remain so we won't bother with the overhead
- // of using a hash set.
- // Any of the MIME types below may be followed by any number of specific versions of the JVM,
- // which is why we use startsWith()
+ // Since this set is very limited and is likely to remain so we won't bother
+ // with the overhead of using a hash set. Any of the MIME types below may be
+ // followed by any number of specific versions of the JVM, which is why we use
+ // startsWith()
return mimeType.startsWith("application/x-java-applet",
TextCaseInsensitive) ||
mimeType.startsWith("application/x-java-bean", TextCaseInsensitive) ||
« no previous file with comments | « third_party/WebKit/Source/platform/MIMETypeRegistry.h ('k') | third_party/WebKit/Source/platform/PODFreeListArena.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698