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

Side by Side Diff: Source/core/svg/animation/SVGSMILElement.cpp

Issue 1158563006: Add SMIL deprecation warning (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 6 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 resolveFirstInterval(); 307 resolveFirstInterval();
308 } 308 }
309 309
310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* r ootParent) 310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* r ootParent)
311 { 311 {
312 SVGElement::insertedInto(rootParent); 312 SVGElement::insertedInto(rootParent);
313 313
314 if (!rootParent->inDocument()) 314 if (!rootParent->inDocument())
315 return InsertionDone; 315 return InsertionDone;
316 316
317 UseCounter::count(document(), UseCounter::SVGSMILElementInDocument); 317 UseCounter::countDeprecation(document(), UseCounter::SVGSMILElementInDocumen t);
318 318
319 setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::att ributeNameAttr))); 319 setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::att ributeNameAttr)));
320 SVGSVGElement* owner = ownerSVGElement(); 320 SVGSVGElement* owner = ownerSVGElement();
321 if (!owner) 321 if (!owner)
322 return InsertionDone; 322 return InsertionDone;
323 323
324 m_timeContainer = owner->timeContainer(); 324 m_timeContainer = owner->timeContainer();
325 ASSERT(m_timeContainer); 325 ASSERT(m_timeContainer);
326 m_timeContainer->setDocumentOrderIndexesDirty(); 326 m_timeContainer->setDocumentOrderIndexesDirty();
327 327
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 visitor->trace(m_targetElement); 1354 visitor->trace(m_targetElement);
1355 visitor->trace(m_timeContainer); 1355 visitor->trace(m_timeContainer);
1356 visitor->trace(m_conditions); 1356 visitor->trace(m_conditions);
1357 visitor->trace(m_syncBaseDependents); 1357 visitor->trace(m_syncBaseDependents);
1358 #endif 1358 #endif
1359 SVGElement::trace(visitor); 1359 SVGElement::trace(visitor);
1360 SVGTests::trace(visitor); 1360 SVGTests::trace(visitor);
1361 } 1361 }
1362 1362
1363 } // namespace blink 1363 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698