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

Side by Side Diff: Source/core/svg/properties/SVGProperty.h

Issue 344693003: Reduce forward declarations in core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/svg/graphics/filters/SVGFEImage.h ('k') | no next file » | 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) 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 #include "core/svg/properties/SVGPropertyInfo.h" 34 #include "core/svg/properties/SVGPropertyInfo.h"
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "wtf/Noncopyable.h" 36 #include "wtf/Noncopyable.h"
37 #include "wtf/PassRefPtr.h" 37 #include "wtf/PassRefPtr.h"
38 #include "wtf/RefCounted.h" 38 #include "wtf/RefCounted.h"
39 #include "wtf/text/WTFString.h" 39 #include "wtf/text/WTFString.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class ExceptionState; 43 class ExceptionState;
44 class QualifiedName;
45 class SVGElement; 44 class SVGElement;
46 class SVGAnimationElement; 45 class SVGAnimationElement;
47 46
48 class SVGPropertyBase : public RefCountedWillBeRefCountedGarbageCollected<SVGPro pertyBase> { 47 class SVGPropertyBase : public RefCountedWillBeRefCountedGarbageCollected<SVGPro pertyBase> {
49 WTF_MAKE_NONCOPYABLE(SVGPropertyBase); 48 WTF_MAKE_NONCOPYABLE(SVGPropertyBase);
50 49
51 public: 50 public:
52 // Properties do not have a primitive type by default 51 // Properties do not have a primitive type by default
53 typedef void PrimitiveType; 52 typedef void PrimitiveType;
54 53
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 99
101 private: 100 private:
102 const AnimatedPropertyType m_type; 101 const AnimatedPropertyType m_type;
103 102
104 RawPtrWillBeMember<SVGPropertyBase> m_ownerList; 103 RawPtrWillBeMember<SVGPropertyBase> m_ownerList;
105 }; 104 };
106 105
107 } 106 }
108 107
109 #endif // SVGProperty_h 108 #endif // SVGProperty_h
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFEImage.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698