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

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

Issue 1528323002: Include <algorithm> if you use functions from <algorithm>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split ui parts into a separate review Created 5 years 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
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 25 matching lines...) Expand all
36 #include "core/frame/UseCounter.h" 36 #include "core/frame/UseCounter.h"
37 #include "core/svg/SVGDocumentExtensions.h" 37 #include "core/svg/SVGDocumentExtensions.h"
38 #include "core/svg/SVGSVGElement.h" 38 #include "core/svg/SVGSVGElement.h"
39 #include "core/svg/SVGURIReference.h" 39 #include "core/svg/SVGURIReference.h"
40 #include "core/svg/animation/SMILTimeContainer.h" 40 #include "core/svg/animation/SMILTimeContainer.h"
41 #include "platform/FloatConversion.h" 41 #include "platform/FloatConversion.h"
42 #include "platform/heap/Handle.h" 42 #include "platform/heap/Handle.h"
43 #include "wtf/MathExtras.h" 43 #include "wtf/MathExtras.h"
44 #include "wtf/StdLibExtras.h" 44 #include "wtf/StdLibExtras.h"
45 #include "wtf/Vector.h" 45 #include "wtf/Vector.h"
46 #include <algorithm>
46 47
47 namespace blink { 48 namespace blink {
48 49
49 class RepeatEvent final : public Event { 50 class RepeatEvent final : public Event {
50 public: 51 public:
51 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type, int repeat) 52 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type, int repeat)
52 { 53 {
53 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat)); 54 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat));
54 } 55 }
55 56
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 visitor->trace(m_targetElement); 1364 visitor->trace(m_targetElement);
1364 visitor->trace(m_timeContainer); 1365 visitor->trace(m_timeContainer);
1365 visitor->trace(m_conditions); 1366 visitor->trace(m_conditions);
1366 visitor->trace(m_syncBaseDependents); 1367 visitor->trace(m_syncBaseDependents);
1367 #endif 1368 #endif
1368 SVGElement::trace(visitor); 1369 SVGElement::trace(visitor);
1369 SVGTests::trace(visitor); 1370 SVGTests::trace(visitor);
1370 } 1371 }
1371 1372
1372 } // namespace blink 1373 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698