Diff
Modified: trunk/Source/WebCore/ChangeLog (196934 => 196935)
--- trunk/Source/WebCore/ChangeLog 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebCore/ChangeLog 2016-02-22 15:59:36 UTC (rev 196935)
@@ -1,3 +1,12 @@
+2016-02-22 Jer Noble <[email protected]>
+
+ Enable AVFoundationNSURLSessionEnabled by default
+ https://bugs.webkit.org/show_bug.cgi?id=154469
+
+ Reviewed by Sam Weinig.
+
+ * page/Settings.cpp:
+
2016-02-22 Manuel Rego Casasnovas <[email protected]>
[css-grid] Swap columns and rows in grid-template shorthand
Modified: trunk/Source/WebCore/page/Settings.cpp (196934 => 196935)
--- trunk/Source/WebCore/page/Settings.cpp 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebCore/page/Settings.cpp 2016-02-22 15:59:36 UTC (rev 196935)
@@ -75,7 +75,7 @@
#if USE(AVFOUNDATION)
bool Settings::gAVFoundationEnabled = true;
-bool Settings::gAVFoundationNSURLSessionEnabled = false;
+bool Settings::gAVFoundationNSURLSessionEnabled = true;
#endif
#if PLATFORM(COCOA)
Modified: trunk/Source/WebKit/mac/ChangeLog (196934 => 196935)
--- trunk/Source/WebKit/mac/ChangeLog 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebKit/mac/ChangeLog 2016-02-22 15:59:36 UTC (rev 196935)
@@ -1,3 +1,13 @@
+2016-02-22 Jer Noble <[email protected]>
+
+ Enable AVFoundationNSURLSessionEnabled by default
+ https://bugs.webkit.org/show_bug.cgi?id=154469
+
+ Reviewed by Sam Weinig.
+
+ * WebView/WebPreferences.mm:
+ (+[WebPreferences initialize]):
+
2016-02-15 Brent Fulgham <[email protected]>
[Mac] Gather some rudimentary statistics during resource load
Modified: trunk/Source/WebKit/mac/WebView/WebPreferences.mm (196934 => 196935)
--- trunk/Source/WebKit/mac/WebView/WebPreferences.mm 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebKit/mac/WebView/WebPreferences.mm 2016-02-22 15:59:36 UTC (rev 196935)
@@ -518,7 +518,7 @@
[NSNumber numberWithBool:YES], WebKitHyperlinkAuditingEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitUsePreHTML5ParserQuirksKey,
[NSNumber numberWithBool:YES], WebKitAVFoundationEnabledKey,
- [NSNumber numberWithBool:NO], WebKitAVFoundationNSURLSessionEnabledKey,
+ [NSNumber numberWithBool:YES], WebKitAVFoundationNSURLSessionEnabledKey,
[NSNumber numberWithBool:NO], WebKitSuppressesIncrementalRenderingKey,
#if !PLATFORM(IOS)
[NSNumber numberWithBool:NO], WebKitRequiresUserGestureForMediaPlaybackPreferenceKey,
Modified: trunk/Source/WebKit2/ChangeLog (196934 => 196935)
--- trunk/Source/WebKit2/ChangeLog 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebKit2/ChangeLog 2016-02-22 15:59:36 UTC (rev 196935)
@@ -1,3 +1,12 @@
+2016-02-22 Jer Noble <[email protected]>
+
+ Enable AVFoundationNSURLSessionEnabled by default
+ https://bugs.webkit.org/show_bug.cgi?id=154469
+
+ Reviewed by Sam Weinig.
+
+ * Shared/WebPreferencesDefinitions.h:
+
2016-02-21 Brian Burg <[email protected]>
Web Inspector: add 'Automation' protocol domain and generate its backend classes separately in WebKit2
Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (196934 => 196935)
--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-02-22 14:08:41 UTC (rev 196934)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-02-22 15:59:36 UTC (rev 196935)
@@ -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, false) \
+ macro(AVFoundationNSURLSessionEnabled, isAVFoundationNSURLSessionEnabled, Bool, bool, true) \
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) \