| 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, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. | 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&)
{ return true; } | 57 virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&)
{ return true; } |
| 58 virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntR
ect&) { return true; } | 58 virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntR
ect&) { return true; } |
| 59 virtual bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&); | 59 virtual bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&); |
| 60 virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } | 60 virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } |
| 61 virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } | 61 virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } |
| 62 virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } | 62 virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } |
| 63 virtual bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } | 63 virtual bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect
&) { return true; } |
| 64 virtual bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, c
onst IntRect&) { return true; } | 64 virtual bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, c
onst IntRect&) { return true; } |
| 65 virtual bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, con
st IntRect&) { return true; } | 65 virtual bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, con
st IntRect&) { return true; } |
| 66 virtual bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInf
o&, const IntRect&) { return true; } | 66 virtual bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInf
o&, const IntRect&) { return true; } |
| 67 virtual bool paintMediaCastButton(LayoutObject*, const PaintInfo&, const Int
Rect&) { return true; } | |
| 68 | 67 |
| 69 bool paintUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect&
); | 68 bool paintUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect&
); |
| 70 bool paintCheckboxUsingFallbackTheme(LayoutObject*, const PaintInfo&, const
IntRect&); | 69 bool paintCheckboxUsingFallbackTheme(LayoutObject*, const PaintInfo&, const
IntRect&); |
| 71 bool paintRadioUsingFallbackTheme(LayoutObject*, const PaintInfo&, const Int
Rect&); | 70 bool paintRadioUsingFallbackTheme(LayoutObject*, const PaintInfo&, const Int
Rect&); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace blink | 73 } // namespace blink |
| 75 | 74 |
| 76 #endif // ThemePainter_h | 75 #endif // ThemePainter_h |
| OLD | NEW |