Title: [150322] trunk/Source/WebKit2
- Revision
- 150322
- Author
- [email protected]
- Date
- 2013-05-17 21:23:45 -0700 (Fri, 17 May 2013)
Log Message
<rdar://problem/13819878> Disable SharedWorker when in multiple web process model
https://bugs.webkit.org/show_bug.cgi?id=116359
The condition was accidentally negated, fixing.
* WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit::WebPlatformStrategies::isAvailable):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (150321 => 150322)
--- trunk/Source/WebKit2/ChangeLog 2013-05-18 04:11:30 UTC (rev 150321)
+++ trunk/Source/WebKit2/ChangeLog 2013-05-18 04:23:45 UTC (rev 150322)
@@ -1,3 +1,13 @@
+2013-05-17 Alexey Proskuryakov <[email protected]>
+
+ <rdar://problem/13819878> Disable SharedWorker when in multiple web process model
+ https://bugs.webkit.org/show_bug.cgi?id=116359
+
+ The condition was accidentally negated, fixing.
+
+ * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
+ (WebKit::WebPlatformStrategies::isAvailable):
+
2013-05-17 Gavin Barraclough <[email protected]>
Only allow 1 WebProcess to hold a PageCache
Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (150321 => 150322)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp 2013-05-18 04:11:30 UTC (rev 150321)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp 2013-05-18 04:23:45 UTC (rev 150322)
@@ -310,7 +310,7 @@
{
// Shared workers do not work across multiple processes, and using network process is tied to multiple secondary process model.
#if ENABLE(NETWORK_PROCESS)
- return WebProcess::shared().usesNetworkProcess();
+ return !WebProcess::shared().usesNetworkProcess();
#else
return true;
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes