Title: [213183] trunk/Source/WebCore
Revision
213183
Author
timothy_hor...@apple.com
Date
2017-02-28 15:21:01 -0800 (Tue, 28 Feb 2017)

Log Message

Apply a review comment that was missing in r213182

* loader/ios/QuickLook.mm:
(WebCore::isQuickLookPreviewURL):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (213182 => 213183)


--- trunk/Source/WebCore/ChangeLog	2017-02-28 23:18:12 UTC (rev 213182)
+++ trunk/Source/WebCore/ChangeLog	2017-02-28 23:21:01 UTC (rev 213183)
@@ -1,5 +1,12 @@
 2017-02-28  Tim Horton  <timothy_hor...@apple.com>
 
+        Apply a review comment that was missing in r213182
+
+        * loader/ios/QuickLook.mm:
+        (WebCore::isQuickLookPreviewURL):
+
+2017-02-28  Tim Horton  <timothy_hor...@apple.com>
+
         [iOS] Getting QLPreviewProtocol slows down first navigation in Web process
         https://bugs.webkit.org/show_bug.cgi?id=168940
         <rdar://problem/29468999>

Modified: trunk/Source/WebCore/loader/ios/QuickLook.mm (213182 => 213183)


--- trunk/Source/WebCore/loader/ios/QuickLook.mm	2017-02-28 23:18:12 UTC (rev 213182)
+++ trunk/Source/WebCore/loader/ios/QuickLook.mm	2017-02-28 23:21:01 UTC (rev 213183)
@@ -128,7 +128,7 @@
 {
     // Use some known protocols as a short-cut to avoid loading the QuickLook framework.
     if (url.protocolIsInHTTPFamily() || url.isBlankURL() || url.protocolIsBlob() || url.protocolIsData() || SchemeRegistry::shouldTreatURLSchemeAsLocal(url.protocol().toString()))
-        return NO;
+        return false;
     return url.protocolIs(QLPreviewProtocol());
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to