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

Side by Side Diff: third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h

Issue 2813413002: Rewrite references to "wtf/" to "platform/wtf/" in core/svg. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 G* * Redistributions in binary form must reproduce the above 10 G* * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef SVGAnimatedProperty_h 31 #ifndef SVGAnimatedProperty_h
32 #define SVGAnimatedProperty_h 32 #define SVGAnimatedProperty_h
33 33
34 #include "core/svg/SVGParsingError.h" 34 #include "core/svg/SVGParsingError.h"
35 #include "core/svg/properties/SVGPropertyInfo.h" 35 #include "core/svg/properties/SVGPropertyInfo.h"
36 #include "core/svg/properties/SVGPropertyTearOff.h" 36 #include "core/svg/properties/SVGPropertyTearOff.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "wtf/Noncopyable.h" 38 #include "platform/wtf/Noncopyable.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class ExceptionState; 42 class ExceptionState;
43 class SVGElement; 43 class SVGElement;
44 44
45 class SVGAnimatedPropertyBase 45 class SVGAnimatedPropertyBase
46 : public GarbageCollectedFinalized<SVGAnimatedPropertyBase> { 46 : public GarbageCollectedFinalized<SVGAnimatedPropertyBase> {
47 WTF_MAKE_NONCOPYABLE(SVGAnimatedPropertyBase); 47 WTF_MAKE_NONCOPYABLE(SVGAnimatedPropertyBase);
48 48
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 CSSPropertyID css_property_id = CSSPropertyInvalid) 335 CSSPropertyID css_property_id = CSSPropertyInvalid)
336 : SVGAnimatedPropertyCommon<Property>(context_element, 336 : SVGAnimatedPropertyCommon<Property>(context_element,
337 attribute_name, 337 attribute_name,
338 initial_value, 338 initial_value,
339 css_property_id) {} 339 css_property_id) {}
340 }; 340 };
341 341
342 } // namespace blink 342 } // namespace blink
343 343
344 #endif // SVGAnimatedProperty_h 344 #endif // SVGAnimatedProperty_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698