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

Side by Side Diff: Source/core/html/RangeInputType.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
« no previous file with comments | « Source/core/html/InputType.cpp ('k') | Source/core/html/RangeInputType.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; 61 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE;
62 virtual String serialize(const Decimal&) const OVERRIDE; 62 virtual String serialize(const Decimal&) const OVERRIDE;
63 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; 63 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
64 virtual void minOrMaxAttributeChanged() OVERRIDE; 64 virtual void minOrMaxAttributeChanged() OVERRIDE;
65 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE; 65 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE;
66 virtual String fallbackValue() const OVERRIDE; 66 virtual String fallbackValue() const OVERRIDE;
67 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE; 67 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE;
68 virtual bool shouldRespectListAttribute() OVERRIDE; 68 virtual bool shouldRespectListAttribute() OVERRIDE;
69 virtual HTMLElement* sliderThumbElement() const OVERRIDE; 69 virtual HTMLElement* sliderThumbElement() const OVERRIDE;
70 virtual HTMLElement* sliderTrackElement() const OVERRIDE; 70 virtual HTMLElement* sliderTrackElement() const OVERRIDE;
71 #if ENABLE(DATALIST_ELEMENT)
72 virtual void listAttributeTargetChanged() OVERRIDE; 71 virtual void listAttributeTargetChanged() OVERRIDE;
73 void updateTickMarkValues(); 72 void updateTickMarkValues();
74 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; 73 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE;
75 74
76 bool m_tickMarkValuesDirty; 75 bool m_tickMarkValuesDirty;
77 Vector<Decimal> m_tickMarkValues; 76 Vector<Decimal> m_tickMarkValues;
78 #endif
79 }; 77 };
80 78
81 } // namespace WebCore 79 } // namespace WebCore
82 80
83 #endif // RangeInputType_h 81 #endif // RangeInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/InputType.cpp ('k') | Source/core/html/RangeInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698