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

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

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 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 20 matching lines...) Expand all
31 #ifndef SVGAnimatedProperty_h 31 #ifndef SVGAnimatedProperty_h
32 #define SVGAnimatedProperty_h 32 #define SVGAnimatedProperty_h
33 33
34 #include "bindings/core/v8/ExceptionState.h" 34 #include "bindings/core/v8/ExceptionState.h"
35 #include "core/dom/ExceptionCode.h" 35 #include "core/dom/ExceptionCode.h"
36 #include "core/svg/SVGParsingError.h" 36 #include "core/svg/SVGParsingError.h"
37 #include "core/svg/properties/SVGPropertyInfo.h" 37 #include "core/svg/properties/SVGPropertyInfo.h"
38 #include "core/svg/properties/SVGPropertyTearOff.h" 38 #include "core/svg/properties/SVGPropertyTearOff.h"
39 #include "platform/heap/Handle.h" 39 #include "platform/heap/Handle.h"
40 #include "wtf/Noncopyable.h" 40 #include "wtf/Noncopyable.h"
41 #include "wtf/PassRefPtr.h"
42 #include "wtf/RefCounted.h"
43 41
44 namespace blink { 42 namespace blink {
45 43
46 class SVGElement; 44 class SVGElement;
47 45
48 class SVGAnimatedPropertyBase : public GarbageCollectedFinalized<SVGAnimatedProp ertyBase> { 46 class SVGAnimatedPropertyBase : public GarbageCollectedFinalized<SVGAnimatedProp ertyBase> {
49 WTF_MAKE_NONCOPYABLE(SVGAnimatedPropertyBase); 47 WTF_MAKE_NONCOPYABLE(SVGAnimatedPropertyBase);
50 public: 48 public:
51 virtual ~SVGAnimatedPropertyBase(); 49 virtual ~SVGAnimatedPropertyBase();
52 50
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 protected: 343 protected:
346 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attribu teName, Property* initialValue) 344 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attribu teName, Property* initialValue)
347 : SVGAnimatedPropertyCommon<Property>(contextElement, attributeName, ini tialValue) 345 : SVGAnimatedPropertyCommon<Property>(contextElement, attributeName, ini tialValue)
348 { 346 {
349 } 347 }
350 }; 348 };
351 349
352 } // namespace blink 350 } // namespace blink
353 351
354 #endif // SVGAnimatedProperty_h 352 #endif // SVGAnimatedProperty_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698