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

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

Issue 2209773002: Remove the blocking touch handlers for the input[type=range] and add touch-action instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add parseAttribute back to pass one more test 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 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 virtual void setCheckboxSize(ComputedStyle&) const { } 205 virtual void setCheckboxSize(ComputedStyle&) const { }
206 206
207 virtual void adjustRadioStyle(ComputedStyle&) const; 207 virtual void adjustRadioStyle(ComputedStyle&) const;
208 virtual void setRadioSize(ComputedStyle&) const { } 208 virtual void setRadioSize(ComputedStyle&) const { }
209 209
210 virtual void adjustButtonStyle(ComputedStyle&) const; 210 virtual void adjustButtonStyle(ComputedStyle&) const;
211 virtual void adjustInnerSpinButtonStyle(ComputedStyle&) const; 211 virtual void adjustInnerSpinButtonStyle(ComputedStyle&) const;
212 212
213 virtual void adjustMenuListStyle(ComputedStyle&, Element*) const; 213 virtual void adjustMenuListStyle(ComputedStyle&, Element*) const;
214 virtual void adjustMenuListButtonStyle(ComputedStyle&, Element*) const; 214 virtual void adjustMenuListButtonStyle(ComputedStyle&, Element*) const;
215 virtual void adjustSliderContainerStyle(ComputedStyle&, Element*) const;
215 virtual void adjustSliderThumbStyle(ComputedStyle&) const; 216 virtual void adjustSliderThumbStyle(ComputedStyle&) const;
216 virtual void adjustSearchFieldStyle(ComputedStyle&) const; 217 virtual void adjustSearchFieldStyle(ComputedStyle&) const;
217 virtual void adjustSearchFieldCancelButtonStyle(ComputedStyle&) const; 218 virtual void adjustSearchFieldCancelButtonStyle(ComputedStyle&) const;
218 void adjustStyleUsingFallbackTheme(ComputedStyle&); 219 void adjustStyleUsingFallbackTheme(ComputedStyle&);
219 void adjustCheckboxStyleUsingFallbackTheme(ComputedStyle&) const; 220 void adjustCheckboxStyleUsingFallbackTheme(ComputedStyle&) const;
220 void adjustRadioStyleUsingFallbackTheme(ComputedStyle&) const; 221 void adjustRadioStyleUsingFallbackTheme(ComputedStyle&) const;
221 222
222 bool hasPlatformTheme() const { return m_platformTheme; } 223 bool hasPlatformTheme() const { return m_platformTheme; }
223 224
224 public: 225 public:
(...skipping 23 matching lines...) Expand all
248 static const RGBA32 defaultTapHighlightColor = 0x66000000; 249 static const RGBA32 defaultTapHighlightColor = 0x66000000;
249 250
250 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; 251 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55;
251 252
252 Theme* m_platformTheme; // The platform-specific theme. 253 Theme* m_platformTheme; // The platform-specific theme.
253 }; 254 };
254 255
255 } // namespace blink 256 } // namespace blink
256 257
257 #endif // LayoutTheme_h 258 #endif // LayoutTheme_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698