| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the theme implementation for form controls in WebCore. | 2 * This file is part of the theme implementation for form controls in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2005 Apple Computer, Inc. | 4 * Copyright (C) 2005 Apple Computer, Inc. |
| 5 * Copyright (C) 2008, 2009 Google, Inc. | 5 * Copyright (C) 2008, 2009 Google, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 bool paintCapsLockIndicator(const LayoutObject&, const PaintInfo&, const Int
Rect&) override; | 38 bool paintCapsLockIndicator(const LayoutObject&, const PaintInfo&, const Int
Rect&) override; |
| 39 bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) o
verride; | 39 bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) o
verride; |
| 40 bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; | 40 bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; |
| 41 bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; | 41 bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; |
| 42 bool paintMenuListButton(const LayoutObject&, const PaintInfo&, const IntRec
t&) override; | 42 bool paintMenuListButton(const LayoutObject&, const PaintInfo&, const IntRec
t&) override; |
| 43 bool paintProgressBar(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 43 bool paintProgressBar(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 44 bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 44 bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 45 bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 45 bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 46 bool paintSearchField(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 46 bool paintSearchField(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 47 bool paintSearchFieldCancelButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) override; | 47 bool paintSearchFieldCancelButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) override; |
| 48 bool paintSearchFieldDecoration(const LayoutObject&, const PaintInfo&, const
IntRect&) override; | |
| 49 bool paintSearchFieldResultsDecoration(const LayoutObject&, const PaintInfo&
, const IntRect&) override; | |
| 50 | 48 |
| 51 LayoutThemeMac& m_layoutTheme; | 49 LayoutThemeMac& m_layoutTheme; |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 } // namespace blink | 52 } // namespace blink |
| 55 | 53 |
| 56 #endif // ThemePainterMac_h | 54 #endif // ThemePainterMac_h |
| OLD | NEW |