Title: [207157] trunk/Source/WebCore
Revision
207157
Author
[email protected]
Date
2016-10-11 12:40:43 -0700 (Tue, 11 Oct 2016)

Log Message

[iOS] Sandbox QuickLook previews
https://bugs.webkit.org/show_bug.cgi?id=163240
<rdar://problem/25961633>

Fix bad merge following r207151.

* platform/network/cf/ResourceResponse.h: Define m_isQuickLook.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207156 => 207157)


--- trunk/Source/WebCore/ChangeLog	2016-10-11 19:35:36 UTC (rev 207156)
+++ trunk/Source/WebCore/ChangeLog	2016-10-11 19:40:43 UTC (rev 207157)
@@ -4,6 +4,16 @@
         https://bugs.webkit.org/show_bug.cgi?id=163240
         <rdar://problem/25961633>
 
+        Fix bad merge following r207151.
+
+        * platform/network/cf/ResourceResponse.h: Define m_isQuickLook.
+
+2016-10-11  Daniel Bates  <[email protected]>
+
+        [iOS] Sandbox QuickLook previews
+        https://bugs.webkit.org/show_bug.cgi?id=163240
+        <rdar://problem/25961633>
+
         Reviewed by Brent Fulgham.
 
         Use a unique origin for- and limit the capabilities of- QuickLook previews.

Modified: trunk/Source/WebCore/platform/network/cf/ResourceResponse.h (207156 => 207157)


--- trunk/Source/WebCore/platform/network/cf/ResourceResponse.h	2016-10-11 19:35:36 UTC (rev 207156)
+++ trunk/Source/WebCore/platform/network/cf/ResourceResponse.h	2016-10-11 19:40:43 UTC (rev 207157)
@@ -110,6 +110,10 @@
 
     unsigned m_initLevel : 3;
 
+#if USE(QUICK_LOOK)
+    bool m_isQuickLook { false };
+#endif
+
 #if USE(CFURLCONNECTION)
     mutable RetainPtr<CFURLResponseRef> m_cfResponse;
 #elif PLATFORM(COCOA)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to