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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutThemeDefault.h

Issue 2216733002: blink: honor renderer caret_blink_interval in non-default themes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTheme.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutThemeDefault.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698