| OLD | NEW |
| 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 #include "platform/wtf/text/WTFString.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class ExceptionState; | 16 class ExceptionState; |
| 17 class ScriptState; | 17 class ScriptState; |
| 18 class ScriptValue; | 18 class ScriptValue; |
| 19 | 19 |
| 20 class CORE_EXPORT CSSStyleValue | 20 class CORE_EXPORT CSSStyleValue |
| 21 : public GarbageCollectedFinalized<CSSStyleValue>, | 21 : public GarbageCollectedFinalized<CSSStyleValue>, |
| 22 public ScriptWrappable { | 22 public ScriptWrappable { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 protected: | 59 protected: |
| 60 CSSStyleValue() {} | 60 CSSStyleValue() {} |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 typedef HeapVector<Member<CSSStyleValue>> CSSStyleValueVector; | 63 typedef HeapVector<Member<CSSStyleValue>> CSSStyleValueVector; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif | 67 #endif |
| OLD | NEW |