| 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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 | 839 |
| 840 void DateTimeEditElement::updateUIState() { | 840 void DateTimeEditElement::updateUIState() { |
| 841 if (isDisabled()) { | 841 if (isDisabled()) { |
| 842 if (DateTimeFieldElement* field = focusedField()) | 842 if (DateTimeFieldElement* field = focusedField()) |
| 843 field->blur(); | 843 field->blur(); |
| 844 } | 844 } |
| 845 } | 845 } |
| 846 | 846 |
| 847 String DateTimeEditElement::value() const { | 847 String DateTimeEditElement::value() const { |
| 848 if (!m_editControlOwner) | 848 if (!m_editControlOwner) |
| 849 return emptyString(); | 849 return emptyString; |
| 850 return m_editControlOwner->formatDateTimeFieldsState( | 850 return m_editControlOwner->formatDateTimeFieldsState( |
| 851 valueAsDateTimeFieldsState()); | 851 valueAsDateTimeFieldsState()); |
| 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 |