Title: [196958] trunk/Source
Revision
196958
Author
[email protected]
Date
2016-02-22 14:23:39 -0800 (Mon, 22 Feb 2016)

Log Message

Unreviewed, rolling out r196935.
https://bugs.webkit.org/show_bug.cgi?id=154557

This change causes timeouts and crashes in LayoutTests
(Requested by ryanhaddad on #webkit).

Reverted changeset:

"Enable AVFoundationNSURLSessionEnabled by default"
https://bugs.webkit.org/show_bug.cgi?id=154469
http://trac.webkit.org/changeset/196935

Patch by Commit Queue <[email protected]> on 2016-02-22

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (196957 => 196958)


--- trunk/Source/WebCore/ChangeLog	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebCore/ChangeLog	2016-02-22 22:23:39 UTC (rev 196958)
@@ -1,3 +1,17 @@
+2016-02-22  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r196935.
+        https://bugs.webkit.org/show_bug.cgi?id=154557
+
+        This change causes timeouts and crashes in LayoutTests
+        (Requested by ryanhaddad on #webkit).
+
+        Reverted changeset:
+
+        "Enable AVFoundationNSURLSessionEnabled by default"
+        https://bugs.webkit.org/show_bug.cgi?id=154469
+        http://trac.webkit.org/changeset/196935
+
 2016-02-22  Myles C. Maxfield  <[email protected]>
 
         [Font Loading] Split CSSFontSelector into a FontFaceSet implementation and the rest of the class

Modified: trunk/Source/WebCore/page/Settings.cpp (196957 => 196958)


--- trunk/Source/WebCore/page/Settings.cpp	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebCore/page/Settings.cpp	2016-02-22 22:23:39 UTC (rev 196958)
@@ -75,7 +75,7 @@
 
 #if USE(AVFOUNDATION)
 bool Settings::gAVFoundationEnabled = true;
-bool Settings::gAVFoundationNSURLSessionEnabled = true;
+bool Settings::gAVFoundationNSURLSessionEnabled = false;
 #endif
 
 #if PLATFORM(COCOA)

Modified: trunk/Source/WebKit/mac/ChangeLog (196957 => 196958)


--- trunk/Source/WebKit/mac/ChangeLog	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebKit/mac/ChangeLog	2016-02-22 22:23:39 UTC (rev 196958)
@@ -1,3 +1,17 @@
+2016-02-22  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r196935.
+        https://bugs.webkit.org/show_bug.cgi?id=154557
+
+        This change causes timeouts and crashes in LayoutTests
+        (Requested by ryanhaddad on #webkit).
+
+        Reverted changeset:
+
+        "Enable AVFoundationNSURLSessionEnabled by default"
+        https://bugs.webkit.org/show_bug.cgi?id=154469
+        http://trac.webkit.org/changeset/196935
+
 2016-02-22  Keith Rollin  <[email protected]>
 
         Add mechanism to disable memory pressure handling

Modified: trunk/Source/WebKit/mac/WebView/WebPreferences.mm (196957 => 196958)


--- trunk/Source/WebKit/mac/WebView/WebPreferences.mm	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebKit/mac/WebView/WebPreferences.mm	2016-02-22 22:23:39 UTC (rev 196958)
@@ -518,7 +518,7 @@
         [NSNumber numberWithBool:YES],  WebKitHyperlinkAuditingEnabledPreferenceKey,
         [NSNumber numberWithBool:NO],   WebKitUsePreHTML5ParserQuirksKey,
         [NSNumber numberWithBool:YES],  WebKitAVFoundationEnabledKey,
-        [NSNumber numberWithBool:YES],  WebKitAVFoundationNSURLSessionEnabledKey,
+        [NSNumber numberWithBool:NO],   WebKitAVFoundationNSURLSessionEnabledKey,
         [NSNumber numberWithBool:NO],   WebKitSuppressesIncrementalRenderingKey,
 #if !PLATFORM(IOS)
         [NSNumber numberWithBool:NO],   WebKitRequiresUserGestureForMediaPlaybackPreferenceKey,

Modified: trunk/Source/WebKit2/ChangeLog (196957 => 196958)


--- trunk/Source/WebKit2/ChangeLog	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-22 22:23:39 UTC (rev 196958)
@@ -1,3 +1,17 @@
+2016-02-22  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r196935.
+        https://bugs.webkit.org/show_bug.cgi?id=154557
+
+        This change causes timeouts and crashes in LayoutTests
+        (Requested by ryanhaddad on #webkit).
+
+        Reverted changeset:
+
+        "Enable AVFoundationNSURLSessionEnabled by default"
+        https://bugs.webkit.org/show_bug.cgi?id=154469
+        http://trac.webkit.org/changeset/196935
+
 2016-02-22  Anders Carlsson  <[email protected]>
 
         Remove _mockCaptureDevicesEnabled getter and setter

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (196957 => 196958)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2016-02-22 22:18:36 UTC (rev 196957)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2016-02-22 22:23:39 UTC (rev 196958)
@@ -141,7 +141,7 @@
     macro(AllowUniversalAccessFromFileURLs, allowUniversalAccessFromFileURLs, Bool, bool, false) \
     macro(AllowFileAccessFromFileURLs, allowFileAccessFromFileURLs, Bool, bool, false) \
     macro(AVFoundationEnabled, isAVFoundationEnabled, Bool, bool, true) \
-    macro(AVFoundationNSURLSessionEnabled, isAVFoundationNSURLSessionEnabled, Bool, bool, true) \
+    macro(AVFoundationNSURLSessionEnabled, isAVFoundationNSURLSessionEnabled, Bool, bool, false) \
     macro(RequiresUserGestureForMediaPlayback, requiresUserGestureForMediaPlayback, Bool, bool, DEFAULT_REQUIRES_USER_GESTURE_FOR_MEDIA_PLAYBACK) \
     macro(RequiresUserGestureForAudioPlayback, requiresUserGestureForAudioPlayback, Bool, bool, DEFAULT_REQUIRES_USER_GESTURE_FOR_AUDIO_PLAYBACK) \
     macro(AllowsInlineMediaPlayback, allowsInlineMediaPlayback, Bool, bool, DEFAULT_ALLOWS_INLINE_MEDIA_PLAYBACK) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to