| 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 const { | 493 const { |
| 494 if (DateTimeEditElement* edit = dateTimeEditElement()) | 494 if (DateTimeEditElement* edit = dateTimeEditElement()) |
| 495 return edit->valueAsDateTimeFieldsState().saveFormControlState(); | 495 return edit->valueAsDateTimeFieldsState().saveFormControlState(); |
| 496 return FormControlState(); | 496 return FormControlState(); |
| 497 } | 497 } |
| 498 | 498 |
| 499 void MultipleFieldsTemporalInputTypeView::didSetValue( | 499 void MultipleFieldsTemporalInputTypeView::didSetValue( |
| 500 const String& sanitizedValue, | 500 const String& sanitizedValue, |
| 501 bool valueChanged) { | 501 bool valueChanged) { |
| 502 DateTimeEditElement* edit = dateTimeEditElement(); | 502 DateTimeEditElement* edit = dateTimeEditElement(); |
| 503 if (valueChanged || (sanitizedValue.isEmpty() && edit && | 503 if (valueChanged || |
| 504 edit->anyEditableFieldsHaveValues())) { | 504 (sanitizedValue.isEmpty() && edit && |
| 505 edit->anyEditableFieldsHaveValues())) { |
| 505 element().updateView(); | 506 element().updateView(); |
| 506 element().setNeedsValidityCheck(); | 507 element().setNeedsValidityCheck(); |
| 507 } | 508 } |
| 508 } | 509 } |
| 509 | 510 |
| 510 void MultipleFieldsTemporalInputTypeView::stepAttributeChanged() { | 511 void MultipleFieldsTemporalInputTypeView::stepAttributeChanged() { |
| 511 updateView(); | 512 updateView(); |
| 512 } | 513 } |
| 513 | 514 |
| 514 void MultipleFieldsTemporalInputTypeView::updateView() { | 515 void MultipleFieldsTemporalInputTypeView::updateView() { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 return element().locale().isRTL() ? TextDirection::kRtl : TextDirection::kLtr; | 628 return element().locale().isRTL() ? TextDirection::kRtl : TextDirection::kLtr; |
| 628 } | 629 } |
| 629 | 630 |
| 630 AXObject* MultipleFieldsTemporalInputTypeView::popupRootAXObject() { | 631 AXObject* MultipleFieldsTemporalInputTypeView::popupRootAXObject() { |
| 631 if (PickerIndicatorElement* picker = pickerIndicatorElement()) | 632 if (PickerIndicatorElement* picker = pickerIndicatorElement()) |
| 632 return picker->popupRootAXObject(); | 633 return picker->popupRootAXObject(); |
| 633 return nullptr; | 634 return nullptr; |
| 634 } | 635 } |
| 635 | 636 |
| 636 } // namespace blink | 637 } // namespace blink |
| OLD | NEW |