Changeset 46935 in webkit


Ignore:
Timestamp:
Aug 7, 2009 5:52:11 PM (15 years ago)
Author:
abarth@webkit.org
Message:

2009-08-07 Nicolas Weber <thakis@chromium.org>

Reviewed by Darin Adler.

Use correct highlight color for listboxes and completion popups.

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

  • rendering/RenderThemeChromiumMac.h:
  • rendering/RenderThemeChromiumMac.mm: Rename activeListBoxSelectionBackgroundColor to platformActiveListBoxSelectionBackgroundColor, so that it actually overrides a virtual method.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46934 r46935  
     12009-08-07  Nicolas Weber  <thakis@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Use correct highlight color for listboxes and completion popups.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=28090
     8
     9        * rendering/RenderThemeChromiumMac.h:
     10        * rendering/RenderThemeChromiumMac.mm:
     11        Rename activeListBoxSelectionBackgroundColor to
     12        platformActiveListBoxSelectionBackgroundColor, so that it actually
     13        overrides a virtual method.
     14
    1152009-08-07  Maxime Simon  <simon.maxime@gmail.com>
    216
  • trunk/WebCore/rendering/RenderThemeChromiumMac.h

    r45569 r46935  
    6363        virtual Color platformActiveSelectionBackgroundColor() const;
    6464        virtual Color platformInactiveSelectionBackgroundColor() const;
    65         virtual Color activeListBoxSelectionBackgroundColor() const;
     65        virtual Color platformActiveListBoxSelectionBackgroundColor() const;
    6666
    6767        virtual Color platformFocusRingColor() const;
  • trunk/WebCore/rendering/RenderThemeChromiumMac.mm

    r46815 r46935  
    168168}
    169169
    170 Color RenderThemeChromiumMac::activeListBoxSelectionBackgroundColor() const
     170Color RenderThemeChromiumMac::platformActiveListBoxSelectionBackgroundColor() const
    171171{
    172172    NSColor* color = [[NSColor alternateSelectedControlColor] colorUsingColorSpaceName:NSDeviceRGBColorSpace];
Note: See TracChangeset for help on using the changeset viewer.