| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
| 3 * | 3 * |
| 4 * Copyright (C) 2006 Apple Computer, Inc. | 4 * Copyright (C) 2006 Apple Computer, Inc. |
| 5 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com | 5 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com |
| 6 * Copyright (C) 2007 Holger Hans Peter Freyther | 6 * Copyright (C) 2007 Holger Hans Peter Freyther |
| 7 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 7 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 8 * Copyright (C) 2008, 2009 Google, Inc. | 8 * Copyright (C) 2008, 2009 Google, Inc. |
| 9 * All rights reserved. | 9 * All rights reserved. |
| 10 * Copyright (C) 2009 Kenneth Rohde Christiansen | 10 * Copyright (C) 2009 Kenneth Rohde Christiansen |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) o
verride; | 47 bool paintTextField(const LayoutObject&, const PaintInfo&, const IntRect&) o
verride; |
| 48 bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; | 48 bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; |
| 49 bool paintMenuListButton(const LayoutObject&, const PaintInfo&, const IntRec
t&) override; | 49 bool paintMenuListButton(const LayoutObject&, const PaintInfo&, const IntRec
t&) override; |
| 50 bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 50 bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 51 bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 51 bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 52 bool paintInnerSpinButton(const LayoutObject&, const PaintInfo&, const IntRe
ct&) override; | 52 bool paintInnerSpinButton(const LayoutObject&, const PaintInfo&, const IntRe
ct&) override; |
| 53 bool paintProgressBar(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 53 bool paintProgressBar(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 54 bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; | 54 bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntRect&) ov
erride; |
| 55 bool paintSearchField(const LayoutObject&, const PaintInfo&, const IntRect&)
override; | 55 bool paintSearchField(const LayoutObject&, const PaintInfo&, const IntRect&)
override; |
| 56 bool paintSearchFieldCancelButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) override; | 56 bool paintSearchFieldCancelButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) override; |
| 57 bool paintSearchFieldResultsDecoration(const LayoutObject&, const PaintInfo&
, const IntRect&) override; | |
| 58 | 57 |
| 59 void setupMenuListArrow(const LayoutBox&, const IntRect&, WebThemeEngine::Ex
traParams&); | 58 void setupMenuListArrow(const LayoutBox&, const IntRect&, WebThemeEngine::Ex
traParams&); |
| 60 }; | 59 }; |
| 61 | 60 |
| 62 } // namespace blink | 61 } // namespace blink |
| 63 | 62 |
| 64 #endif // ThemePainerDefault_h | 63 #endif // ThemePainerDefault_h |
| OLD | NEW |