| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "wtf/Forward.h" | 27 #include "wtf/Forward.h" |
| 28 #include "wtf/Noncopyable.h" | 28 #include "wtf/Noncopyable.h" |
| 29 #include "wtf/text/WTFString.h" | 29 #include "wtf/text/WTFString.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class CSSRule; | 33 class CSSRule; |
| 34 class CSSStyleSheet; | 34 class CSSStyleSheet; |
| 35 class CSSValue; | 35 class CSSValue; |
| 36 class ExceptionState; | 36 class ExceptionState; |
| 37 class MutableStylePropertySet; | |
| 38 | 37 |
| 39 class CORE_EXPORT CSSStyleDeclaration | 38 class CORE_EXPORT CSSStyleDeclaration |
| 40 : public GarbageCollectedFinalized<CSSStyleDeclaration>, | 39 : public GarbageCollectedFinalized<CSSStyleDeclaration>, |
| 41 public ScriptWrappable { | 40 public ScriptWrappable { |
| 42 DEFINE_WRAPPERTYPEINFO(); | 41 DEFINE_WRAPPERTYPEINFO(); |
| 43 WTF_MAKE_NONCOPYABLE(CSSStyleDeclaration); | 42 WTF_MAKE_NONCOPYABLE(CSSStyleDeclaration); |
| 44 | 43 |
| 45 public: | 44 public: |
| 46 virtual ~CSSStyleDeclaration() {} | 45 virtual ~CSSStyleDeclaration() {} |
| 47 | 46 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 87 |
| 89 DECLARE_VIRTUAL_TRACE_WRAPPERS(); | 88 DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
| 90 | 89 |
| 91 protected: | 90 protected: |
| 92 CSSStyleDeclaration() {} | 91 CSSStyleDeclaration() {} |
| 93 }; | 92 }; |
| 94 | 93 |
| 95 } // namespace blink | 94 } // namespace blink |
| 96 | 95 |
| 97 #endif // CSSStyleDeclaration_h | 96 #endif // CSSStyleDeclaration_h |
| OLD | NEW |