| 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 * | 10 * |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 virtual Color platformActiveSelectionBackgroundColor() const; | 59 virtual Color platformActiveSelectionBackgroundColor() const; |
| 60 virtual Color platformInactiveSelectionBackgroundColor() const; | 60 virtual Color platformInactiveSelectionBackgroundColor() const; |
| 61 virtual Color platformActiveSelectionForegroundColor() const; | 61 virtual Color platformActiveSelectionForegroundColor() const; |
| 62 virtual Color platformInactiveSelectionForegroundColor() const; | 62 virtual Color platformInactiveSelectionForegroundColor() const; |
| 63 virtual Color platformFocusRingColor() const; | 63 virtual Color platformFocusRingColor() const; |
| 64 | 64 |
| 65 // To change the blink interval, override caretBlinkIntervalInternal instead
of this one so that we may share layout test code an intercepts. | 65 // To change the blink interval, override caretBlinkIntervalInternal instead
of this one so that we may share layout test code an intercepts. |
| 66 virtual double caretBlinkInterval() const; | 66 virtual double caretBlinkInterval() const; |
| 67 | 67 |
| 68 // System fonts. | 68 // System fonts. |
| 69 virtual void systemFont(int propId, FontDescription&) const; | 69 virtual void systemFont(CSSValueID, FontDescription&) const; |
| 70 | 70 |
| 71 virtual int minimumMenuListSize(RenderStyle*) const; | 71 virtual int minimumMenuListSize(RenderStyle*) const; |
| 72 | 72 |
| 73 virtual void setCheckboxSize(RenderStyle*) const; | 73 virtual void setCheckboxSize(RenderStyle*) const; |
| 74 | 74 |
| 75 virtual void setRadioSize(RenderStyle*) const; | 75 virtual void setRadioSize(RenderStyle*) const; |
| 76 | 76 |
| 77 virtual void adjustButtonStyle(StyleResolver*, RenderStyle*, Element*) const
; | 77 virtual void adjustButtonStyle(StyleResolver*, RenderStyle*, Element*) const
; |
| 78 | 78 |
| 79 virtual bool paintTextArea(RenderObject*, const PaintInfo&, const IntRect&); | 79 virtual bool paintTextArea(RenderObject*, const PaintInfo&, const IntRect&); |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 int menuListInternalPadding(RenderStyle*, int paddingType) const; | 160 int menuListInternalPadding(RenderStyle*, int paddingType) const; |
| 161 bool paintMediaButtonInternal(GraphicsContext*, const IntRect&, Image*); | 161 bool paintMediaButtonInternal(GraphicsContext*, const IntRect&, Image*); |
| 162 IntRect convertToPaintingRect(RenderObject* inputRenderer, const RenderObjec
t* partRenderer, LayoutRect partRect, const IntRect& localOffset) const; | 162 IntRect convertToPaintingRect(RenderObject* inputRenderer, const RenderObjec
t* partRenderer, LayoutRect partRect, const IntRect& localOffset) const; |
| 163 | 163 |
| 164 static const RGBA32 defaultTapHighlightColor = 0x2e000000; // 18% black. | 164 static const RGBA32 defaultTapHighlightColor = 0x2e000000; // 18% black. |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 } // namespace WebCore | 167 } // namespace WebCore |
| 168 | 168 |
| 169 #endif // RenderThemeChromiumSkia_h | 169 #endif // RenderThemeChromiumSkia_h |
| OLD | NEW |