Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: Source/core/rendering/RenderThemeChromiumDefault.h

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebasing after r150849 Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
47 virtual Color activeListBoxSelectionBackgroundColor() const; 47 virtual Color activeListBoxSelectionBackgroundColor() const;
48 virtual Color activeListBoxSelectionForegroundColor() const; 48 virtual Color activeListBoxSelectionForegroundColor() const;
49 virtual Color inactiveListBoxSelectionBackgroundColor() const; 49 virtual Color inactiveListBoxSelectionBackgroundColor() const;
50 virtual Color inactiveListBoxSelectionForegroundColor() const; 50 virtual Color inactiveListBoxSelectionForegroundColor() const;
51 51
52 virtual Color platformActiveSelectionBackgroundColor() const; 52 virtual Color platformActiveSelectionBackgroundColor() const;
53 virtual Color platformInactiveSelectionBackgroundColor() const; 53 virtual Color platformInactiveSelectionBackgroundColor() const;
54 virtual Color platformActiveSelectionForegroundColor() const; 54 virtual Color platformActiveSelectionForegroundColor() const;
55 virtual Color platformInactiveSelectionForegroundColor() const; 55 virtual Color platformInactiveSelectionForegroundColor() const;
56 56
57 #if ENABLE(DATALIST_ELEMENT)
58 virtual IntSize sliderTickSize() const OVERRIDE; 57 virtual IntSize sliderTickSize() const OVERRIDE;
59 virtual int sliderTickOffsetFromTrackCenter() const OVERRIDE; 58 virtual int sliderTickOffsetFromTrackCenter() const OVERRIDE;
60 #endif
61 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const; 59 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const;
62 60
63 static void setCaretBlinkInterval(double); 61 static void setCaretBlinkInterval(double);
64 virtual double caretBlinkIntervalInternal() const; 62 virtual double caretBlinkIntervalInternal() const;
65 63
66 virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&); 64 virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&);
67 virtual void setCheckboxSize(RenderStyle*) const; 65 virtual void setCheckboxSize(RenderStyle*) const;
68 66
69 virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&); 67 virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&);
70 virtual void setRadioSize(RenderStyle*) const; 68 virtual void setRadioSize(RenderStyle*) const;
(...skipping 27 matching lines...) Expand all
98 96
99 static unsigned m_activeSelectionBackgroundColor; 97 static unsigned m_activeSelectionBackgroundColor;
100 static unsigned m_activeSelectionForegroundColor; 98 static unsigned m_activeSelectionForegroundColor;
101 static unsigned m_inactiveSelectionBackgroundColor; 99 static unsigned m_inactiveSelectionBackgroundColor;
102 static unsigned m_inactiveSelectionForegroundColor; 100 static unsigned m_inactiveSelectionForegroundColor;
103 }; 101 };
104 102
105 } // namespace WebCore 103 } // namespace WebCore
106 104
107 #endif // RenderThemeChromiumDefault_h 105 #endif // RenderThemeChromiumDefault_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTheme.cpp ('k') | Source/core/rendering/RenderThemeChromiumDefault.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698