| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |