Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enable AVFoundationNSURLSessionEnabled by default
https://bugs.webkit.org/show_bug.cgi?id=154469

Reviewed by Sam Weinig.

Source/WebCore:

* page/Settings.cpp:

Source/WebKit/mac:

* WebView/WebPreferences.mm:
(+[WebPreferences initialize]):

Source/WebKit2:

* Shared/WebPreferencesDefinitions.h:


Canonical link: https://commits.webkit.org/172642@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@196935 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
jernoble committed Feb 22, 2016
1 parent 3209b82 commit a007a55
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 3 deletions.
9 changes: 9 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,12 @@
2016-02-22 Jer Noble <jer.noble@apple.com>

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 <rego@igalia.com>

[css-grid] Swap columns and rows in grid-template shorthand
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/page/Settings.cpp
Expand Up @@ -75,7 +75,7 @@ static void invalidateAfterGenericFamilyChange(Page* page)

#if USE(AVFOUNDATION)
bool Settings::gAVFoundationEnabled = true;
bool Settings::gAVFoundationNSURLSessionEnabled = false;
bool Settings::gAVFoundationNSURLSessionEnabled = true;
#endif

#if PLATFORM(COCOA)
Expand Down
10 changes: 10 additions & 0 deletions Source/WebKit/mac/ChangeLog
@@ -1,3 +1,13 @@
2016-02-22 Jer Noble <jer.noble@apple.com>

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 <bfulgham@apple.com>

[Mac] Gather some rudimentary statistics during resource load
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit/mac/WebView/WebPreferences.mm
Expand Up @@ -518,7 +518,7 @@ + (void)initialize
[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,
Expand Down
9 changes: 9 additions & 0 deletions Source/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
2016-02-22 Jer Noble <jer.noble@apple.com>

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 <bburg@apple.com>

Web Inspector: add 'Automation' protocol domain and generate its backend classes separately in WebKit2
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit2/Shared/WebPreferencesDefinitions.h
Expand Up @@ -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) \
Expand Down

0 comments on commit a007a55

Please sign in to comment.