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

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

Issue 932403002: InlinedVisitor: Migrate html to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 } 448 }
449 449
450 DateTimeEditElement::~DateTimeEditElement() 450 DateTimeEditElement::~DateTimeEditElement()
451 { 451 {
452 #if !ENABLE(OILPAN) 452 #if !ENABLE(OILPAN)
453 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex) 453 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex)
454 m_fields[fieldIndex]->removeEventHandler(); 454 m_fields[fieldIndex]->removeEventHandler();
455 #endif 455 #endif
456 } 456 }
457 457
458 void DateTimeEditElement::trace(Visitor* visitor) 458 DEFINE_TRACE(DateTimeEditElement)
459 { 459 {
460 #if ENABLE(OILPAN) 460 #if ENABLE(OILPAN)
461 visitor->trace(m_fields); 461 visitor->trace(m_fields);
462 #endif 462 #endif
463 visitor->trace(m_editControlOwner); 463 visitor->trace(m_editControlOwner);
464 HTMLDivElement::trace(visitor); 464 HTMLDivElement::trace(visitor);
465 } 465 }
466 466
467 inline Element* DateTimeEditElement::fieldsWrapperElement() const 467 inline Element* DateTimeEditElement::fieldsWrapperElement() const
468 { 468 {
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 { 807 {
808 DateTimeFieldsState dateTimeFieldsState; 808 DateTimeFieldsState dateTimeFieldsState;
809 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex) 809 for (size_t fieldIndex = 0; fieldIndex < m_fields.size(); ++fieldIndex)
810 m_fields[fieldIndex]->populateDateTimeFieldsState(dateTimeFieldsState); 810 m_fields[fieldIndex]->populateDateTimeFieldsState(dateTimeFieldsState);
811 return dateTimeFieldsState; 811 return dateTimeFieldsState;
812 } 812 }
813 813
814 } // namespace blink 814 } // namespace blink
815 815
816 #endif 816 #endif
OLDNEW
« no previous file with comments | « Source/core/html/shadow/DateTimeEditElement.h ('k') | Source/core/html/shadow/DateTimeFieldElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698