Changeset 127444 in webkit


Ignore:
Timestamp:
Sep 4, 2012 1:27:24 AM (12 years ago)
Author:
ryuan.choi@samsung.com
Message:

[EFL] Drop default theme concept
https://bugs.webkit.org/show_bug.cgi?id=94778

Reviewed by Gyuyoung Kim.

Source/WebKit/efl:

  • ewk/ewk_view.h:

Updated doxygen document not to mention default theme.

Source/WebKit2:

  • PlatformEfl.cmake: Removed DEFAULT_THEME_PATH definitions.
  • UIProcess/API/efl/ewk_view.cpp:

(_ewk_view_initialize): Removed default theme concept.

  • UIProcess/API/efl/ewk_view.h:

Updated doxygen document not to mention default theme.

Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r127436 r127444  
     12012-09-04  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [EFL] Drop default theme concept
     4        https://bugs.webkit.org/show_bug.cgi?id=94778
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * ewk/ewk_view.h:
     9        Updated doxygen document not to mention default theme.
     10
    1112012-09-03  Jinwoo Song  <jinwoo7.song@samsung.com>
    212
  • trunk/Source/WebKit/efl/ewk/ewk_view.h

    r127024 r127444  
    736736 *
    737737 * @param o view object to change theme
    738  * @param path theme path, may be @c NULL to reset to the default theme
     738 * @param path theme path
    739739 */
    740740EAPI void         ewk_view_theme_set(Evas_Object *o, const char *path);
  • trunk/Source/WebKit2/ChangeLog

    r127434 r127444  
     12012-09-04  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [EFL] Drop default theme concept
     4        https://bugs.webkit.org/show_bug.cgi?id=94778
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * PlatformEfl.cmake: Removed DEFAULT_THEME_PATH definitions.
     9        * UIProcess/API/efl/ewk_view.cpp:
     10        (_ewk_view_initialize): Removed default theme concept.
     11        * UIProcess/API/efl/ewk_view.h:
     12        Updated doxygen document not to mention default theme.
     13
    1142012-09-03  Kangil Han  <kangil.han@samsung.com>
    215
  • trunk/Source/WebKit2/PlatformEfl.cmake

    r127422 r127444  
    190190)
    191191
    192 ADD_DEFINITIONS(-DDEFAULT_THEME_PATH=\"${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}/themes\")
    193 
    194192ADD_CUSTOM_TARGET(forwarding-headerEfl
    195193    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
  • trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp

    r127422 r127444  
    715715    ewk_view_resource_load_client_attach(wkPage, ewkView);
    716716    ewk_view_ui_client_attach(wkPage, ewkView);
    717 
    718     ewk_view_theme_set(ewkView, DEFAULT_THEME_PATH"/default.edj");
    719717}
    720718
  • trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.h

    r127422 r127444  
    554554 *
    555555 * @param o view object to change theme
    556  * @param path theme path, may be @c NULL to reset to the default theme
     556 * @param path theme path
    557557 */
    558558EAPI void ewk_view_theme_set(Evas_Object *o, const char *path);
Note: See TracChangeset for help on using the changeset viewer.