Changeset 90531 in webkit


Ignore:
Timestamp:
Jul 6, 2011 8:49:37 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-07-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>

[EFL] Add Fullscreen API feature
https://bugs.webkit.org/show_bug.cgi?id=63975

This is just to add disabled ENABLE_FULLSCREEN_API to OptionEFl.cmake.
ENABLE_FULLSCREEN_API will be enabled after finishing missing implementations.

Reviewed by Adam Barth.

  • Source/cmake/OptionsEfl.cmake: Add disabled ENABLE_FULLSCREEN_API feature.
  • Source/cmakeconfig.h.cmake: ditto.

2011-07-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>

[EFL] Add Fullscreen API feature
https://bugs.webkit.org/show_bug.cgi?id=63975

Add needed files for enabling ENABLE_FULLSCREEN_API feature.

Reviewed by Adam Barth.

  • CMakeLists.txt: Add RenderFullScreen.cpp, fullscreen.css
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r90389 r90531  
     12011-07-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Add Fullscreen API feature
     4        https://bugs.webkit.org/show_bug.cgi?id=63975
     5
     6        This is just to add disabled ENABLE_FULLSCREEN_API to OptionEFl.cmake.
     7        ENABLE_FULLSCREEN_API will be enabled after finishing missing implementations.
     8
     9        Reviewed by Adam Barth.
     10
     11        * Source/cmake/OptionsEfl.cmake: Add disabled ENABLE_FULLSCREEN_API feature.
     12        * Source/cmakeconfig.h.cmake: ditto.
     13
    1142011-07-05  Vsevolod Vlasov  <vsevik@chromium.org>
    215
  • trunk/Source/WebCore/CMakeLists.txt

    r90269 r90531  
    12131213    rendering/RenderFrameBase.cpp
    12141214    rendering/RenderFrameSet.cpp
     1215    rendering/RenderFullScreen.cpp
    12151216    rendering/RenderHTMLCanvas.cpp
    12161217    rendering/RenderIFrame.cpp
     
    14021403SET(WebCore_USER_AGENT_STYLE_SHEETS
    14031404    ${WEBCORE_DIR}/css/html.css
     1405    ${WEBCORE_DIR}/css/fullscreen.css
    14041406    ${WEBCORE_DIR}/css/mathml.css
    14051407    ${WEBCORE_DIR}/css/mediaControls.css
  • trunk/Source/WebCore/ChangeLog

    r90530 r90531  
     12011-07-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Add Fullscreen API feature
     4        https://bugs.webkit.org/show_bug.cgi?id=63975
     5
     6        Add needed files for enabling ENABLE_FULLSCREEN_API feature.
     7
     8        Reviewed by Adam Barth.
     9
     10        * CMakeLists.txt: Add RenderFullScreen.cpp, fullscreen.css
     11
    1122011-07-06  Emil A Eklund  <eae@chromium.org>
    213
  • trunk/Source/cmake/OptionsEfl.cmake

    r89509 r90531  
    7474WEBKIT_FEATURE(ENABLE_FILTERS "Enable SVG filters" DEFAULT ON SVG)
    7575WEBKIT_FEATURE(ENABLE_FTPDIR "Enable FTP directory support" DEFAULT ON)
     76WEBKIT_FEATURE(ENABLE_FULLSCREEN_API "Enable Fullscreen API support" DEFAULT OFF)
    7677WEBKIT_FEATURE(ENABLE_GEOLOCATION "Enable geolocation" DEFAULT OFF)
    7778WEBKIT_FEATURE(ENABLE_GLIB_SUPPORT "Enable Glib support" DEFAULT ON)
  • trunk/Source/cmakeconfig.h.cmake

    r89509 r90531  
    1919#cmakedefine01 ENABLE_FILTERS
    2020#cmakedefine01 ENABLE_FTPDIR
     21#cmakedefine01 ENABLE_FULLSCREEN_API
    2122#cmakedefine01 ENABLE_GEOLOCATION
    2223#cmakedefine01 ENABLE_GLIB_SUPPORT
Note: See TracChangeset for help on using the changeset viewer.