Title: [169013] trunk/Source/WebCore
Revision
169013
Author
[email protected]
Date
2014-05-18 09:53:03 -0700 (Sun, 18 May 2014)

Log Message

Build fix for r169006.

Unreviewed.

* loader/ResourceLoader.h: Return didCreateQuickLookHandle() to public.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (169012 => 169013)


--- trunk/Source/WebCore/ChangeLog	2014-05-18 16:29:07 UTC (rev 169012)
+++ trunk/Source/WebCore/ChangeLog	2014-05-18 16:53:03 UTC (rev 169013)
@@ -1,3 +1,11 @@
+2014-05-18  Jon Lee  <[email protected]>
+
+        Build fix for r169006.
+
+        Unreviewed.
+
+        * loader/ResourceLoader.h: Return didCreateQuickLookHandle() to public.
+
 2014-05-18  Antti Koivisto  <[email protected]>
 
         REGRESSION (r160259): text-combine glyphs are not rendered

Modified: trunk/Source/WebCore/loader/ResourceLoader.h (169012 => 169013)


--- trunk/Source/WebCore/loader/ResourceLoader.h	2014-05-18 16:29:07 UTC (rev 169012)
+++ trunk/Source/WebCore/loader/ResourceLoader.h	2014-05-18 16:53:03 UTC (rev 169013)
@@ -113,6 +113,10 @@
 #endif
     virtual void receivedCancellation(const AuthenticationChallenge&);
 
+#if USE(QUICK_LOOK)
+    virtual void didCreateQuickLookHandle(QuickLookHandle&) override;
+#endif
+
     const URL& url() const { return m_request.url(); }
     ResourceHandle* handle() const { return m_handle.get(); }
     bool shouldSendResourceLoadCallbacks() const { return m_options.sendLoadCallbacks == SendCallbacks; }
@@ -194,9 +198,6 @@
     // FIXME: Windows should use willCacheResponse - <https://bugs.webkit.org/show_bug.cgi?id=57257>.
     virtual bool shouldCacheResponse(ResourceHandle*, CFCachedURLResponseRef) override;
 #endif
-#if USE(QUICK_LOOK)
-    virtual void didCreateQuickLookHandle(QuickLookHandle&) override;
-#endif
 
     ResourceRequest m_request;
     ResourceRequest m_originalRequest; // Before redirects.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to