| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 Color platformActiveSelectionBackgroundColor() const override; | 55 Color platformActiveSelectionBackgroundColor() const override; |
| 56 Color platformInactiveSelectionBackgroundColor() const override; | 56 Color platformInactiveSelectionBackgroundColor() const override; |
| 57 Color platformActiveSelectionForegroundColor() const override; | 57 Color platformActiveSelectionForegroundColor() const override; |
| 58 Color platformInactiveSelectionForegroundColor() const override; | 58 Color platformInactiveSelectionForegroundColor() const override; |
| 59 | 59 |
| 60 IntSize sliderTickSize() const override; | 60 IntSize sliderTickSize() const override; |
| 61 int sliderTickOffsetFromTrackCenter() const override; | 61 int sliderTickOffsetFromTrackCenter() const override; |
| 62 void adjustSliderThumbSize(ComputedStyle&) const override; | 62 void adjustSliderThumbSize(ComputedStyle&) const override; |
| 63 | 63 |
| 64 static void setCaretBlinkInterval(double); | |
| 65 | |
| 66 void setCheckboxSize(ComputedStyle&) const override; | 64 void setCheckboxSize(ComputedStyle&) const override; |
| 67 void setRadioSize(ComputedStyle&) const override; | 65 void setRadioSize(ComputedStyle&) const override; |
| 68 void adjustInnerSpinButtonStyle(ComputedStyle&) const override; | 66 void adjustInnerSpinButtonStyle(ComputedStyle&) const override; |
| 69 void adjustButtonStyle(ComputedStyle&) const override; | 67 void adjustButtonStyle(ComputedStyle&) const override; |
| 70 | 68 |
| 71 bool popsMenuBySpaceKey() const final { return true; } | 69 bool popsMenuBySpaceKey() const final { return true; } |
| 72 bool popsMenuByReturnKey() const final { return true; } | 70 bool popsMenuByReturnKey() const final { return true; } |
| 73 bool popsMenuByAltDownUpOrF4Key() const override { return true; } | 71 bool popsMenuByAltDownUpOrF4Key() const override { return true; } |
| 74 | 72 |
| 75 bool shouldOpenPickerWithF4Key() const override; | 73 bool shouldOpenPickerWithF4Key() const override; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 static unsigned m_activeSelectionForegroundColor; | 143 static unsigned m_activeSelectionForegroundColor; |
| 146 static unsigned m_inactiveSelectionBackgroundColor; | 144 static unsigned m_inactiveSelectionBackgroundColor; |
| 147 static unsigned m_inactiveSelectionForegroundColor; | 145 static unsigned m_inactiveSelectionForegroundColor; |
| 148 | 146 |
| 149 ThemePainterDefault m_painter; | 147 ThemePainterDefault m_painter; |
| 150 }; | 148 }; |
| 151 | 149 |
| 152 } // namespace blink | 150 } // namespace blink |
| 153 | 151 |
| 154 #endif // LayoutThemeDefault_h | 152 #endif // LayoutThemeDefault_h |
| OLD | NEW |