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

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

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 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) 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 16 matching lines...) Expand all
27 #include "core/svg/animation/SVGSMILElement.h" 27 #include "core/svg/animation/SVGSMILElement.h"
28 28
29 #include "SVGNames.h" 29 #include "SVGNames.h"
30 #include "XLinkNames.h" 30 #include "XLinkNames.h"
31 #include "bindings/v8/ExceptionStatePlaceholder.h" 31 #include "bindings/v8/ExceptionStatePlaceholder.h"
32 #include "bindings/v8/ScriptEventListener.h" 32 #include "bindings/v8/ScriptEventListener.h"
33 #include "core/dom/Document.h" 33 #include "core/dom/Document.h"
34 #include "core/events/EventListener.h" 34 #include "core/events/EventListener.h"
35 #include "core/events/EventSender.h" 35 #include "core/events/EventSender.h"
36 #include "core/svg/SVGDocumentExtensions.h" 36 #include "core/svg/SVGDocumentExtensions.h"
37 #include "core/svg/SVGElementInstance.h"
37 #include "core/svg/SVGSVGElement.h" 38 #include "core/svg/SVGSVGElement.h"
38 #include "core/svg/SVGURIReference.h" 39 #include "core/svg/SVGURIReference.h"
39 #include "core/svg/animation/SMILTimeContainer.h" 40 #include "core/svg/animation/SMILTimeContainer.h"
40 #include "platform/FloatConversion.h" 41 #include "platform/FloatConversion.h"
41 #include "wtf/MathExtras.h" 42 #include "wtf/MathExtras.h"
42 #include "wtf/StdLibExtras.h" 43 #include "wtf/StdLibExtras.h"
43 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
44 45
45 using namespace std; 46 using namespace std;
46 47
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 if (eventType == "repeatn") { 1312 if (eventType == "repeatn") {
1312 unsigned repeatEventCount = m_repeatEventCountList.first(); 1313 unsigned repeatEventCount = m_repeatEventCountList.first();
1313 m_repeatEventCountList.remove(0); 1314 m_repeatEventCountList.remove(0);
1314 dispatchEvent(RepeatEvent::create(eventType, repeatEventCount)); 1315 dispatchEvent(RepeatEvent::create(eventType, repeatEventCount));
1315 } else { 1316 } else {
1316 dispatchEvent(Event::create(eventType)); 1317 dispatchEvent(Event::create(eventType));
1317 } 1318 }
1318 } 1319 }
1319 1320
1320 } 1321 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGZoomAndPan.cpp ('k') | Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698