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