Title: [137832] trunk/Source/WebKit2
Revision
137832
Author
[email protected]
Date
2012-12-15 19:11:05 -0800 (Sat, 15 Dec 2012)

Log Message

Another build fix.

* UIProcess/WebContext.cpp:
(WebKit::WebContext::createDownloadProxy):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137831 => 137832)


--- trunk/Source/WebKit2/ChangeLog	2012-12-16 02:54:54 UTC (rev 137831)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-16 03:11:05 UTC (rev 137832)
@@ -1,3 +1,10 @@
+2012-12-15  Anders Carlsson  <[email protected]>
+
+        Another build fix.
+
+        * UIProcess/WebContext.cpp:
+        (WebKit::WebContext::createDownloadProxy):
+
 2012-12-15  Andy Estes  <[email protected]>
 
         [WebKit2] Have CustomProtocolManager and CustomProtocolManagerProxy store Connections for messaging

Modified: trunk/Source/WebKit2/UIProcess/WebContext.cpp (137831 => 137832)


--- trunk/Source/WebKit2/UIProcess/WebContext.cpp	2012-12-16 02:54:54 UTC (rev 137831)
+++ trunk/Source/WebKit2/UIProcess/WebContext.cpp	2012-12-16 03:11:05 UTC (rev 137832)
@@ -857,12 +857,12 @@
 
 DownloadProxy* WebContext::createDownloadProxy()
 {
-    if (!usesNetworkProcess())
-        return ensureSharedWebProcess()->createDownloadProxy();
-
 #if ENABLE(NETWORK_PROCESS)
-    return m_networkProcess->createDownloadProxy();
+    if (usesNetworkProcess())
+        return m_networkProcess->createDownloadProxy();
 #endif
+
+    return ensureSharedWebProcess()->createDownloadProxy();
 }
 
 // FIXME: This is not the ideal place for this function.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to