Changeset 62920 in webkit


Ignore:
Timestamp:
Jul 9, 2010 2:18:38 AM (14 years ago)
Author:
ajwong@chromium.org
Message:

Add RuntimeEnabledFeatures::timeRangesEnabled() required by r62880

Reviewed by Nikolas Zimmermann.

https://bugs.webkit.org/show_bug.cgi?id=41935

  • bindings/generic/RuntimeEnabledFeatures.cpp:

(WebCore::RuntimeEnabledFeatures::timeRangesEnabled):

Add in timeRangesEnabled() implementation.

  • bindings/generic/RuntimeEnabledFeatures.h:

Add in timeRangesEnabled() declaration.

Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62919 r62920  
     12010-07-09  Albert J. Wong  <ajwong@chromium.org>
     2
     3        Reviewed by Nikolas Zimmermann.
     4
     5        Add RuntimeEnabledFeatures::timeRangesEnabled() required by r62880
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=41935
     8
     9        * bindings/generic/RuntimeEnabledFeatures.cpp:
     10        (WebCore::RuntimeEnabledFeatures::timeRangesEnabled):
     11                Add in timeRangesEnabled() implementation.
     12        * bindings/generic/RuntimeEnabledFeatures.h:
     13                Add in timeRangesEnabled() declaration.
     14
     15
    1162010-07-09  Eric Seidel  <eric@webkit.org>
    217
  • trunk/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r61388 r62920  
    7676}
    7777
     78bool RuntimeEnabledFeatures::timeRangesEnabled()
     79{
     80    return MediaPlayer::isAvailable();
     81}
     82
    7883#endif
    7984
  • trunk/WebCore/bindings/generic/RuntimeEnabledFeatures.h

    r60902 r62920  
    6464    static bool htmlVideoElementEnabled();
    6565    static bool mediaErrorEnabled();
     66    static bool timeRangesEnabled();
    6667#endif
    6768
Note: See TracChangeset for help on using the changeset viewer.