Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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 <commit-queue@webkit.org> on 2016-02-22

Canonical link: https://commits.webkit.org/172664@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@196958 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
webkit-commit-queue authored and ryanhaddad committed Feb 22, 2016
1 parent 446df70 commit eeab161
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 3 deletions.
14 changes: 14 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,17 @@
2016-02-22 Commit Queue <commit-queue@webkit.org>

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

[Font Loading] Split CSSFontSelector into a FontFaceSet implementation and the rest of the class
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 = true;
bool Settings::gAVFoundationNSURLSessionEnabled = false;
#endif

#if PLATFORM(COCOA)
Expand Down
14 changes: 14 additions & 0 deletions Source/WebKit/mac/ChangeLog
@@ -1,3 +1,17 @@
2016-02-22 Commit Queue <commit-queue@webkit.org>

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

Add mechanism to disable memory pressure handling
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:YES], WebKitAVFoundationNSURLSessionEnabledKey,
[NSNumber numberWithBool:NO], WebKitAVFoundationNSURLSessionEnabledKey,
[NSNumber numberWithBool:NO], WebKitSuppressesIncrementalRenderingKey,
#if !PLATFORM(IOS)
[NSNumber numberWithBool:NO], WebKitRequiresUserGestureForMediaPlaybackPreferenceKey,
Expand Down
14 changes: 14 additions & 0 deletions Source/WebKit2/ChangeLog
@@ -1,3 +1,17 @@
2016-02-22 Commit Queue <commit-queue@webkit.org>

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

Remove _mockCaptureDevicesEnabled getter and setter
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, 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) \
Expand Down

0 comments on commit eeab161

Please sign in to comment.