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

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

Issue 2331443002: Mac: adjust sizes of progress bars to be equal to painted size. (Closed)
Patch Set: Created 4 years, 3 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 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, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 146
147 virtual void adjustSliderThumbSize(ComputedStyle&) const; 147 virtual void adjustSliderThumbSize(ComputedStyle&) const;
148 148
149 virtual int popupInternalPaddingStart(const ComputedStyle&) const { return 0 ; } 149 virtual int popupInternalPaddingStart(const ComputedStyle&) const { return 0 ; }
150 virtual int popupInternalPaddingEnd(const ComputedStyle&) const { return 0; } 150 virtual int popupInternalPaddingEnd(const ComputedStyle&) const { return 0; }
151 virtual int popupInternalPaddingTop(const ComputedStyle&) const { return 0; } 151 virtual int popupInternalPaddingTop(const ComputedStyle&) const { return 0; }
152 virtual int popupInternalPaddingBottom(const ComputedStyle&) const { return 0; } 152 virtual int popupInternalPaddingBottom(const ComputedStyle&) const { return 0; }
153 153
154 virtual ScrollbarControlSize scrollbarControlSizeForPart(ControlPart) { retu rn RegularScrollbar; } 154 virtual ScrollbarControlSize scrollbarControlSizeForPart(ControlPart) { retu rn RegularScrollbar; }
155 155
156 virtual void adjustProgressBarBounds(ComputedStyle& style) const { }
157
156 // Returns the repeat interval of the animation for the progress bar. 158 // Returns the repeat interval of the animation for the progress bar.
157 virtual double animationRepeatIntervalForProgressBar() const; 159 virtual double animationRepeatIntervalForProgressBar() const;
158 // Returns the duration of the animation for the progress bar. 160 // Returns the duration of the animation for the progress bar.
159 virtual double animationDurationForProgressBar() const; 161 virtual double animationDurationForProgressBar() const;
160 162
161 // Media controls 163 // Media controls
162 String formatMediaControlsTime(float time) const; 164 String formatMediaControlsTime(float time) const;
163 String formatMediaControlsCurrentTime(float currentTime, float duration) con st; 165 String formatMediaControlsCurrentTime(float currentTime, float duration) con st;
164 166
165 // Returns size of one slider tick mark for a horizontal track. 167 // Returns size of one slider tick mark for a horizontal track.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 static const RGBA32 defaultTapHighlightColor = 0x66000000; 253 static const RGBA32 defaultTapHighlightColor = 0x66000000;
252 254
253 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; 255 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55;
254 256
255 Theme* m_platformTheme; // The platform-specific theme. 257 Theme* m_platformTheme; // The platform-specific theme.
256 }; 258 };
257 259
258 } // namespace blink 260 } // namespace blink
259 261
260 #endif // LayoutTheme_h 262 #endif // LayoutTheme_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698