Changeset 65117 in webkit


Ignore:
Timestamp:
Aug 10, 2010 7:53:08 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-10 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Add video files to enable video in WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=43790

Add files regarding html5 video to CMakeList.txt for WebKit Efl.
But, this patch is not run html5 video on WebKit EFL yet.

  • CMakeLists.txt: Add files related to html5video.
  • platform/efl/LocalizedStringsEfl.cpp: Add functions for html5 video. (WebCore::localizedMediaControlElementString): (WebCore::localizedMediaControlElementHelpText): (WebCore::localizedMediaTimeDescription):
  • platform/graphics/MediaPlayer.cpp: (WebCore::installedMediaEngines): Disable MediaPlayerPrivate::r

egisterMediaEngine for WebKit EFL.

Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/CMakeLists.txt

    r65102 r65117  
    17631763ENDIF()
    17641764
     1765IF (ENABLE_VIDEO)
     1766    LIST(APPEND WebCore_SOURCES
     1767        ${DERIVED_SOURCES_DIR}/JSTimeRanges.cpp
     1768        bindings/js/JSAudioConstructor.cpp
     1769        html/HTMLAudioElement.cpp
     1770        html/HTMLMediaElement.cpp
     1771        html/HTMLSourceElement.cpp
     1772        html/HTMLVideoElement.cpp
     1773        html/TimeRanges.cpp
     1774        platform/graphics/MediaPlayer.cpp
     1775        rendering/MediaControlElements.cpp
     1776        rendering/RenderMedia.cpp
     1777        rendering/RenderVideo.cpp
     1778    )
     1779ENDIF()
     1780
    17651781IF (ENABLE_WML)
    17661782    LIST(APPEND WebCore_SOURCES
  • trunk/WebCore/ChangeLog

    r65116 r65117  
     12010-08-10  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Add video files to enable video in WebKit EFL
     6        https://bugs.webkit.org/show_bug.cgi?id=43790
     7
     8        Add files regarding html5 video to CMakeList.txt for WebKit Efl.
     9        But, this patch is not run html5 video on WebKit EFL yet.
     10
     11        * CMakeLists.txt: Add files related to html5video.
     12        * platform/efl/LocalizedStringsEfl.cpp: Add functions for html5 video.
     13        (WebCore::localizedMediaControlElementString):
     14        (WebCore::localizedMediaControlElementHelpText):
     15        (WebCore::localizedMediaTimeDescription):
     16        * platform/graphics/MediaPlayer.cpp:
     17        (WebCore::installedMediaEngines): Disable MediaPlayerPrivate::r
     18      egisterMediaEngine for WebKit EFL.
     19
    1202010-08-10  Patrick Gansterer  <paroga@paroga.com>
    221
  • trunk/WebCore/platform/efl/LocalizedStringsEfl.cpp

    r59924 r65117  
    351351}
    352352
     353#if ENABLE(VIDEO)
     354String localizedMediaControlElementString(const String& name)
     355{
     356    notImplemented();
     357    return String();
     358}
     359
     360String localizedMediaControlElementHelpText(const String& name)
     361{
     362    notImplemented();
     363    return String();
     364}
     365
     366String localizedMediaTimeDescription(float time)
     367{
     368    notImplemented();
     369    return String();
     370}
     371#endif
     372
    353373String mediaElementLoadingStateText()
    354374{
  • trunk/WebCore/platform/graphics/MediaPlayer.cpp

    r64884 r65117  
    172172#if PLATFORM(WIN)
    173173        MediaPlayerPrivateQuickTimeVisualContext::registerMediaEngine(addMediaEngine);
    174 #elif !PLATFORM(GTK)
     174#elif !PLATFORM(GTK) && !PLATFORM(EFL)
    175175        // FIXME: currently all the MediaEngines are named
    176176        // MediaPlayerPrivate. This code will need an update when bug
Note: See TracChangeset for help on using the changeset viewer.