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

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h

Issue 2345223002: Slim includes in CSSValue.h (Closed)
Patch Set: Created 4 years, 3 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CSSStyleValue_h 5 #ifndef CSSStyleValue_h
6 #define CSSStyleValue_h 6 #define CSSStyleValue_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/CSSPropertyNames.h" 9 #include "core/CSSPropertyNames.h"
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
11 #include "core/css/CSSValue.h" 11 #include "core/css/CSSValue.h"
12 #include "wtf/text/WTFString.h"
12 13
13 namespace blink { 14 namespace blink {
14 15
15 class ExceptionState; 16 class ExceptionState;
16 class ScriptState; 17 class ScriptState;
17 class ScriptValue; 18 class ScriptValue;
18 19
19 class CORE_EXPORT CSSStyleValue : public GarbageCollectedFinalized<CSSStyleValue >, public ScriptWrappable { 20 class CORE_EXPORT CSSStyleValue : public GarbageCollectedFinalized<CSSStyleValue >, public ScriptWrappable {
20 WTF_MAKE_NONCOPYABLE(CSSStyleValue); 21 WTF_MAKE_NONCOPYABLE(CSSStyleValue);
21 DEFINE_WRAPPERTYPEINFO(); 22 DEFINE_WRAPPERTYPEINFO();
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 56
56 protected: 57 protected:
57 CSSStyleValue() {} 58 CSSStyleValue() {}
58 }; 59 };
59 60
60 typedef HeapVector<Member<CSSStyleValue>> CSSStyleValueVector; 61 typedef HeapVector<Member<CSSStyleValue>> CSSStyleValueVector;
61 62
62 } // namespace blink 63 } // namespace blink
63 64
64 #endif 65 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698