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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 } | 523 } |
524 | 524 |
525 inline Element* DateTimeEditElement::fieldsWrapperElement() const { | 525 inline Element* DateTimeEditElement::fieldsWrapperElement() const { |
526 DCHECK(firstChild()); | 526 DCHECK(firstChild()); |
527 return toElementOrDie(firstChild()); | 527 return toElementOrDie(firstChild()); |
528 } | 528 } |
529 | 529 |
530 void DateTimeEditElement::addField(DateTimeFieldElement* field) { | 530 void DateTimeEditElement::addField(DateTimeFieldElement* field) { |
531 if (m_fields.size() >= maximumNumberOfFields) | 531 if (m_fields.size() >= maximumNumberOfFields) |
532 return; | 532 return; |
533 m_fields.append(field); | 533 m_fields.push_back(field); |
534 fieldsWrapperElement()->appendChild(field); | 534 fieldsWrapperElement()->appendChild(field); |
535 } | 535 } |
536 | 536 |
537 bool DateTimeEditElement::anyEditableFieldsHaveValues() const { | 537 bool DateTimeEditElement::anyEditableFieldsHaveValues() const { |
538 for (const auto& field : m_fields) { | 538 for (const auto& field : m_fields) { |
539 if (!field->isDisabled() && field->hasValue()) | 539 if (!field->isDisabled() && field->hasValue()) |
540 return true; | 540 return true; |
541 } | 541 } |
542 return false; | 542 return false; |
543 } | 543 } |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 } | 852 } |
853 | 853 |
854 DateTimeFieldsState DateTimeEditElement::valueAsDateTimeFieldsState() const { | 854 DateTimeFieldsState DateTimeEditElement::valueAsDateTimeFieldsState() const { |
855 DateTimeFieldsState dateTimeFieldsState; | 855 DateTimeFieldsState dateTimeFieldsState; |
856 for (const auto& field : m_fields) | 856 for (const auto& field : m_fields) |
857 field->populateDateTimeFieldsState(dateTimeFieldsState); | 857 field->populateDateTimeFieldsState(dateTimeFieldsState); |
858 return dateTimeFieldsState; | 858 return dateTimeFieldsState; |
859 } | 859 } |
860 | 860 |
861 } // namespace blink | 861 } // namespace blink |
OLD | NEW |