| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 void setEmptyValue(const LayoutParameters&, const DateComponents& dateForRea
dOnlyField); | 99 void setEmptyValue(const LayoutParameters&, const DateComponents& dateForRea
dOnlyField); |
| 100 void setValueAsDate(const LayoutParameters&, const DateComponents&); | 100 void setValueAsDate(const LayoutParameters&, const DateComponents&); |
| 101 void setValueAsDateTimeFieldsState(const DateTimeFieldsState&); | 101 void setValueAsDateTimeFieldsState(const DateTimeFieldsState&); |
| 102 void setOnlyYearMonthDay(const DateComponents&); | 102 void setOnlyYearMonthDay(const DateComponents&); |
| 103 void stepDown(); | 103 void stepDown(); |
| 104 void stepUp(); | 104 void stepUp(); |
| 105 String value() const; | 105 String value() const; |
| 106 DateTimeFieldsState valueAsDateTimeFieldsState() const; | 106 DateTimeFieldsState valueAsDateTimeFieldsState() const; |
| 107 | 107 |
| 108 virtual void trace(Visitor*) OVERRIDE; | 108 virtual void trace(Visitor*) OVERRIDE; |
| 109 virtual void visitWith(Visitor*) const OVERRIDE; | 109 virtual void adjustAndMark(Visitor*) const OVERRIDE; |
| 110 | 110 |
| 111 private: | 111 private: |
| 112 static const size_t invalidFieldIndex = static_cast<size_t>(-1); | 112 static const size_t invalidFieldIndex = static_cast<size_t>(-1); |
| 113 | 113 |
| 114 // Datetime can be represent at most five fields, such as | 114 // Datetime can be represent at most five fields, such as |
| 115 // 1. year | 115 // 1. year |
| 116 // 2. month | 116 // 2. month |
| 117 // 3. day-of-month | 117 // 3. day-of-month |
| 118 // 4. hour | 118 // 4. hour |
| 119 // 5. minute | 119 // 5. minute |
| (...skipping 28 matching lines...) Expand all Loading... |
| 148 virtual AtomicString localeIdentifier() const OVERRIDE FINAL; | 148 virtual AtomicString localeIdentifier() const OVERRIDE FINAL; |
| 149 | 149 |
| 150 HeapVector<Member<DateTimeFieldElement>, maximumNumberOfFields> m_fields; | 150 HeapVector<Member<DateTimeFieldElement>, maximumNumberOfFields> m_fields; |
| 151 EditControlOwner* m_editControlOwner; | 151 EditControlOwner* m_editControlOwner; |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 } // namespace WebCore | 154 } // namespace WebCore |
| 155 | 155 |
| 156 #endif | 156 #endif |
| 157 #endif | 157 #endif |
| OLD | NEW |