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

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

Issue 926113005: Remove InputType::shouldRespectSpeechAttribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/forms/InputType.cpp ('k') | Source/core/html/forms/NumberInputType.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 virtual Decimal parseToNumber(const String&, const Decimal&) const override; 58 virtual Decimal parseToNumber(const String&, const Decimal&) const override;
59 virtual String serialize(const Decimal&) const override; 59 virtual String serialize(const Decimal&) const override;
60 virtual String localizeValue(const String&) const override; 60 virtual String localizeValue(const String&) const override;
61 virtual String visibleValue() const override; 61 virtual String visibleValue() const override;
62 virtual String convertFromVisibleValue(const String&) const override; 62 virtual String convertFromVisibleValue(const String&) const override;
63 virtual String sanitizeValue(const String&) const override; 63 virtual String sanitizeValue(const String&) const override;
64 virtual bool hasBadInput() const override; 64 virtual bool hasBadInput() const override;
65 virtual String badInputText() const override; 65 virtual String badInputText() const override;
66 virtual String rangeOverflowText(const Decimal& maxmum) const override; 66 virtual String rangeOverflowText(const Decimal& maxmum) const override;
67 virtual String rangeUnderflowText(const Decimal& minimum) const override; 67 virtual String rangeUnderflowText(const Decimal& minimum) const override;
68 virtual bool shouldRespectSpeechAttribute() override;
69 virtual bool supportsPlaceholder() const override; 68 virtual bool supportsPlaceholder() const override;
70 virtual void minOrMaxAttributeChanged() override; 69 virtual void minOrMaxAttributeChanged() override;
71 virtual void stepAttributeChanged() override; 70 virtual void stepAttributeChanged() override;
72 virtual bool supportsSelectionAPI() const override; 71 virtual bool supportsSelectionAPI() const override;
73 }; 72 };
74 73
75 } // namespace blink 74 } // namespace blink
76 75
77 #endif // NumberInputType_h 76 #endif // NumberInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/forms/InputType.cpp ('k') | Source/core/html/forms/NumberInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698