| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 // DateTimeFieldElement functions. | 71 // DateTimeFieldElement functions. |
| 72 virtual void didBlur() OVERRIDE FINAL; | 72 virtual void didBlur() OVERRIDE FINAL; |
| 73 virtual void handleKeyboardEvent(KeyboardEvent*) OVERRIDE FINAL; | 73 virtual void handleKeyboardEvent(KeyboardEvent*) OVERRIDE FINAL; |
| 74 virtual float maximumWidth(const Font&) OVERRIDE; | 74 virtual float maximumWidth(const Font&) OVERRIDE; |
| 75 virtual int minimum() const OVERRIDE FINAL; | 75 virtual int minimum() const OVERRIDE FINAL; |
| 76 virtual void stepDown() OVERRIDE FINAL; | 76 virtual void stepDown() OVERRIDE FINAL; |
| 77 virtual void stepUp() OVERRIDE FINAL; | 77 virtual void stepUp() OVERRIDE FINAL; |
| 78 virtual String value() const OVERRIDE FINAL; | 78 virtual String value() const OVERRIDE FINAL; |
| 79 | 79 |
| 80 String formatValue(int) const; | 80 String formatValue(int) const; |
| 81 Locale& localeForOwner() const; | |
| 82 | 81 |
| 83 DOMTimeStamp m_lastDigitCharTime; | 82 DOMTimeStamp m_lastDigitCharTime; |
| 84 const String m_placeholder; | 83 const String m_placeholder; |
| 85 const Range m_range; | 84 const Range m_range; |
| 86 int m_value; | 85 int m_value; |
| 87 bool m_hasValue; | 86 bool m_hasValue; |
| 88 }; | 87 }; |
| 89 | 88 |
| 90 } // namespace WebCore | 89 } // namespace WebCore |
| 91 | 90 |
| 92 #endif | 91 #endif |
| 93 #endif | 92 #endif |
| OLD | NEW |