Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: Source/core/html/shadow/DateTimeEditElement.cpp

Issue 22880029: Make AttachBehavior a required argument. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 400
401 void DateTimeEditBuilder::visitLiteral(const String& text) 401 void DateTimeEditBuilder::visitLiteral(const String& text)
402 { 402 {
403 DEFINE_STATIC_LOCAL(AtomicString, textPseudoId, ("-webkit-datetime-edit-text ", AtomicString::ConstructFromLiteral)); 403 DEFINE_STATIC_LOCAL(AtomicString, textPseudoId, ("-webkit-datetime-edit-text ", AtomicString::ConstructFromLiteral));
404 ASSERT(text.length()); 404 ASSERT(text.length());
405 RefPtr<HTMLDivElement> element = HTMLDivElement::create(m_editElement.docume nt()); 405 RefPtr<HTMLDivElement> element = HTMLDivElement::create(m_editElement.docume nt());
406 element->setPart(textPseudoId); 406 element->setPart(textPseudoId);
407 if (m_parameters.locale.isRTL() && text.length()) { 407 if (m_parameters.locale.isRTL() && text.length()) {
408 Direction dir = direction(text[0]); 408 Direction dir = direction(text[0]);
409 if (dir == SegmentSeparator || dir == WhiteSpaceNeutral || dir == OtherN eutral) 409 if (dir == SegmentSeparator || dir == WhiteSpaceNeutral || dir == OtherN eutral)
410 element->appendChild(Text::create(m_editElement.document(), String(& rightToLeftMark, 1))); 410 element->appendChild(Text::create(m_editElement.document(), String(& rightToLeftMark, 1)), ASSERT_NO_EXCEPTION, DeprecatedAttachNow);
411 } 411 }
412 element->appendChild(Text::create(m_editElement.document(), text)); 412 element->appendChild(Text::create(m_editElement.document(), text), ASSERT_NO _EXCEPTION, DeprecatedAttachNow);
413 m_editElement.fieldsWrapperElement()->appendChild(element, ASSERT_NO_EXCEPTI ON, AttachLazily); 413 m_editElement.fieldsWrapperElement()->appendChild(element, ASSERT_NO_EXCEPTI ON, AttachLazily);
414 } 414 }
415 415
416 DateTimeNumericFieldElement::Step DateTimeEditBuilder::createStep(double msPerFi eldUnit, double msPerFieldSize) const 416 DateTimeNumericFieldElement::Step DateTimeEditBuilder::createStep(double msPerFi eldUnit, double msPerFieldSize) const
417 { 417 {
418 const Decimal msPerFieldUnitDecimal(static_cast<int>(msPerFieldUnit)); 418 const Decimal msPerFieldUnitDecimal(static_cast<int>(msPerFieldUnit));
419 const Decimal msPerFieldSizeDecimal(static_cast<int>(msPerFieldSize)); 419 const Decimal msPerFieldSizeDecimal(static_cast<int>(msPerFieldSize));
420 Decimal stepMilliseconds = stepRange().step(); 420 Decimal stepMilliseconds = stepRange().step();
421 ASSERT(!msPerFieldUnitDecimal.isZero()); 421 ASSERT(!msPerFieldUnitDecimal.isZero());
422 ASSERT(!msPerFieldSizeDecimal.isZero()); 422 ASSERT(!msPerFieldSizeDecimal.isZero());
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 { 790 {
791 DateTimeFieldsState dateTimeFieldsState; 791 DateTimeFieldsState dateTimeFieldsState;
792 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex) 792 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex)
793 m_fields[fieldIndex]->populateDateTimeFieldsState(dateTimeFieldsState); 793 m_fields[fieldIndex]->populateDateTimeFieldsState(dateTimeFieldsState);
794 return dateTimeFieldsState; 794 return dateTimeFieldsState;
795 } 795 }
796 796
797 } // namespace WebCore 797 } // namespace WebCore
798 798
799 #endif 799 #endif
OLDNEW
« no previous file with comments | « Source/core/html/TextFieldInputType.cpp ('k') | Source/core/html/shadow/DateTimeFieldElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698