Changeset 185333 in webkit


Ignore:
Timestamp:
Jun 8, 2015 3:59:52 PM (9 years ago)
Author:
eric.carlson@apple.com
Message:

[Mac] Enable AVFoundation by default when QTKit is disabled by default
https://bugs.webkit.org/show_bug.cgi?id=145760

Reviewed by Alexey Proskuryakov.

No new tests, this change makes existing tests pass.

Settings::gAVFoundationEnabled defaults to true.

  • page/Settings.cpp:

(WebCore::invalidateAfterGenericFamilyChange):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r185329 r185333  
     12015-06-08  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [Mac] Enable AVFoundation by default when QTKit is disabled by default
     4        https://bugs.webkit.org/show_bug.cgi?id=145760
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        No new tests, this change makes existing tests pass.
     9
     10        Settings::gAVFoundationEnabled defaults to true.
     11
     12        * page/Settings.cpp:
     13        (WebCore::invalidateAfterGenericFamilyChange):
     14
    1152015-06-08  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebCore/page/Settings.cpp

    r185231 r185333  
    7171
    7272#if USE(AVFOUNDATION)
     73#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 101000
    7374bool Settings::gAVFoundationEnabled = false;
     75#else
     76bool Settings::gAVFoundationEnabled = true;
     77#endif
    7478#endif
    7579
Note: See TracChangeset for help on using the changeset viewer.