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

Side by Side Diff: Source/core/html/forms/RangeInputType.h

Issue 83413002: Derive the step base for an input element as (now) specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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 * 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual bool typeMismatchFor(const String&) const OVERRIDE; 52 virtual bool typeMismatchFor(const String&) const OVERRIDE;
53 virtual bool supportsRequired() const OVERRIDE; 53 virtual bool supportsRequired() const OVERRIDE;
54 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; 54 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
55 virtual bool isSteppable() const OVERRIDE; 55 virtual bool isSteppable() const OVERRIDE;
56 virtual void handleMouseDownEvent(MouseEvent*) OVERRIDE; 56 virtual void handleMouseDownEvent(MouseEvent*) OVERRIDE;
57 virtual void handleTouchEvent(TouchEvent*) OVERRIDE; 57 virtual void handleTouchEvent(TouchEvent*) OVERRIDE;
58 virtual bool hasTouchEventHandler() const OVERRIDE; 58 virtual bool hasTouchEventHandler() const OVERRIDE;
59 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE; 59 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
60 virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE; 60 virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
61 virtual void createShadowSubtree() OVERRIDE; 61 virtual void createShadowSubtree() OVERRIDE;
62 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; 62 virtual Decimal parseToNumber(const String&, const String&, const Decimal&) const OVERRIDE;
63 virtual String serialize(const Decimal&) const OVERRIDE; 63 virtual String serialize(const Decimal&) const OVERRIDE;
64 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; 64 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
65 virtual void sanitizeValueInResponseToMinOrMaxAttributeChange() OVERRIDE; 65 virtual void sanitizeValueInResponseToMinOrMaxAttributeChange() OVERRIDE;
66 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE; 66 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE;
67 virtual String fallbackValue() const OVERRIDE; 67 virtual String fallbackValue() const OVERRIDE;
68 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE; 68 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE;
69 virtual bool shouldRespectListAttribute() OVERRIDE; 69 virtual bool shouldRespectListAttribute() OVERRIDE;
70 SliderThumbElement* sliderThumbElement() const; 70 SliderThumbElement* sliderThumbElement() const;
71 Element* sliderTrackElement() const; 71 Element* sliderTrackElement() const;
72 virtual void listAttributeTargetChanged() OVERRIDE; 72 virtual void listAttributeTargetChanged() OVERRIDE;
73 void updateTickMarkValues(); 73 void updateTickMarkValues();
74 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE; 74 virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE;
75 75
76 bool m_tickMarkValuesDirty; 76 bool m_tickMarkValuesDirty;
77 Vector<Decimal> m_tickMarkValues; 77 Vector<Decimal> m_tickMarkValues;
78 }; 78 };
79 79
80 } // namespace WebCore 80 } // namespace WebCore
81 81
82 #endif // RangeInputType_h 82 #endif // RangeInputType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698