| 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 Apple Computer, Inc. | 4 * Copyright (C) 2005 Apple Computer, Inc. |
| 5 * Copyright (C) 2008, 2009 Google, Inc. | 5 * Copyright (C) 2008, 2009 Google, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 virtual int popupInternalPaddingLeft(RenderStyle*) const; | 67 virtual int popupInternalPaddingLeft(RenderStyle*) const; |
| 68 virtual int popupInternalPaddingRight(RenderStyle*) const; | 68 virtual int popupInternalPaddingRight(RenderStyle*) const; |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 virtual Color disabledTextColor(const Color& textColor, const Color&) const
OVERRIDE { return textColor; } | 71 virtual Color disabledTextColor(const Color& textColor, const Color&) const
OVERRIDE { return textColor; } |
| 72 virtual void updateActiveState(NSCell*, const RenderObject*); | 72 virtual void updateActiveState(NSCell*, const RenderObject*); |
| 73 virtual String extraDefaultStyleSheet(); | 73 virtual String extraDefaultStyleSheet(); |
| 74 #if ENABLE(DATALIST_ELEMENT) | 74 #if ENABLE(DATALIST_ELEMENT) |
| 75 virtual LayoutUnit sliderTickSnappingThreshold() const OVERRIDE; | 75 virtual LayoutUnit sliderTickSnappingThreshold() const OVERRIDE; |
| 76 #endif | 76 #endif |
| 77 #if ENABLE(CALENDAR_PICKER) | |
| 78 virtual CString extraCalendarPickerStyleSheet() OVERRIDE; | |
| 79 #endif | |
| 80 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 77 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 81 virtual bool supportsCalendarPicker(const AtomicString& type) const OVERRIDE
; | 78 virtual bool supportsCalendarPicker(const AtomicString& type) const OVERRIDE
; |
| 82 #endif | 79 #endif |
| 83 virtual bool shouldShowPlaceholderWhenFocused() const OVERRIDE; | 80 virtual bool shouldShowPlaceholderWhenFocused() const OVERRIDE; |
| 84 }; | 81 }; |
| 85 | 82 |
| 86 } // namespace WebCore | 83 } // namespace WebCore |
| 87 | 84 |
| 88 #endif // RenderThemeChromiumMac_h | 85 #endif // RenderThemeChromiumMac_h |
| OLD | NEW |