Changeset 90382 in webkit


Ignore:
Timestamp:
Jul 4, 2011 7:19:12 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

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

Reviewed by Kent Tamura.

[EFL] Add hasOwnDisabledStateHandlingFor() to RenderThemeEfl
https://bugs.webkit.org/show_bug.cgi?id=63884

As MediaControlRootElement decides whether it will display timeline
according to the return value of RenderTheme's hasOwnDisabledStateHandlingFor(),
RenderThemeEfl has to implement this function.

Existing tests cover the visibility of the controls.

  • platform/efl/RenderThemeEfl.h: (WebCore::RenderThemeEfl::hasOwnDisabledStateHandlingFor):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90379 r90382  
     12011-07-04  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [EFL] Add hasOwnDisabledStateHandlingFor() to RenderThemeEfl
     6        https://bugs.webkit.org/show_bug.cgi?id=63884
     7
     8        As MediaControlRootElement decides whether it will display timeline
     9        according to the return value of RenderTheme's hasOwnDisabledStateHandlingFor(),
     10        RenderThemeEfl has to implement this function.
     11
     12        Existing tests cover the visibility of the controls.
     13
     14        * platform/efl/RenderThemeEfl.h:
     15        (WebCore::RenderThemeEfl::hasOwnDisabledStateHandlingFor):
     16
    1172011-07-04  Kent Tamura  <tkent@chromium.org>
    218
  • trunk/Source/WebCore/platform/efl/RenderThemeEfl.h

    r88985 r90382  
    174174    virtual String extraMediaControlsStyleSheet();
    175175    virtual String formatMediaControlsCurrentTime(float currentTime, float duration) const;
     176    virtual bool hasOwnDisabledStateHandlingFor(ControlPart) const { return true; }
    176177
    177178    virtual bool paintMediaFullscreenButton(RenderObject*, const PaintInfo&, const IntRect&);
Note: See TracChangeset for help on using the changeset viewer.