Diff
Modified: trunk/Source/WebCore/ChangeLog (197937 => 197938)
--- trunk/Source/WebCore/ChangeLog 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebCore/ChangeLog 2016-03-10 16:28:52 UTC (rev 197938)
@@ -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-03-10 Frederic Wang <[email protected]>
[GTK] Add support for WOFF2
Modified: trunk/Source/WebCore/page/Settings.cpp (197937 => 197938)
--- trunk/Source/WebCore/page/Settings.cpp 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebCore/page/Settings.cpp 2016-03-10 16:28:52 UTC (rev 197938)
@@ -77,7 +77,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 (197937 => 197938)
--- trunk/Source/WebKit/mac/ChangeLog 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebKit/mac/ChangeLog 2016-03-10 16:28:52 UTC (rev 197938)
@@ -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-03-09 Ryosuke Niwa <[email protected]>
Add runtime flags for shadow DOM and custom elements
Modified: trunk/Source/WebKit/mac/WebView/WebPreferences.mm (197937 => 197938)
--- trunk/Source/WebKit/mac/WebView/WebPreferences.mm 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebKit/mac/WebView/WebPreferences.mm 2016-03-10 16:28:52 UTC (rev 197938)
@@ -517,7 +517,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 (197937 => 197938)
--- trunk/Source/WebKit2/ChangeLog 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebKit2/ChangeLog 2016-03-10 16:28:52 UTC (rev 197938)
@@ -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-03-10 Eric Carlson <[email protected]>
Unreviewed, revert changes accidentally committed with previous patch.
Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (197937 => 197938)
--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-03-10 16:24:14 UTC (rev 197937)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-03-10 16:28:52 UTC (rev 197938)
@@ -149,7 +149,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) \