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, 2006, 2007 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2006, 2007 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/PassRefPtr.h" | 27 #include "wtf/PassRefPtr.h" |
28 #include "wtf/RefCounted.h" | 28 #include "wtf/RefCounted.h" |
29 #include "wtf/Vector.h" | 29 #include "wtf/Vector.h" |
30 | 30 |
31 namespace WebCore { | 31 namespace WebCore { |
32 | 32 |
33 class HTMLStyleElement; | 33 class HTMLStyleElement; |
34 class StyleSheet; | 34 class StyleSheet; |
35 | 35 |
36 class StyleSheetList : public RefCountedWillBeGarbageCollectedFinalized<StyleShe
etList> { | 36 class StyleSheetList : public RefCountedWillBeGarbageCollectedFinalized<StyleShe
etList> { |
37 DECLARE_GC_INFO | |
38 public: | 37 public: |
39 static PassRefPtrWillBeRawPtr<StyleSheetList> create(TreeScope* treeScope) {
return adoptRefWillBeNoop(new StyleSheetList(treeScope)); } | 38 static PassRefPtrWillBeRawPtr<StyleSheetList> create(TreeScope* treeScope) {
return adoptRefWillBeNoop(new StyleSheetList(treeScope)); } |
40 ~StyleSheetList(); | 39 ~StyleSheetList(); |
41 | 40 |
42 unsigned length(); | 41 unsigned length(); |
43 StyleSheet* item(unsigned index); | 42 StyleSheet* item(unsigned index); |
44 | 43 |
45 HTMLStyleElement* getNamedItem(const AtomicString&) const; | 44 HTMLStyleElement* getNamedItem(const AtomicString&) const; |
46 | 45 |
47 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; } | 46 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; } |
48 | 47 |
49 void detachFromDocument(); | 48 void detachFromDocument(); |
50 CSSStyleSheet* anonymousNamedGetter(const AtomicString&); | 49 CSSStyleSheet* anonymousNamedGetter(const AtomicString&); |
51 | 50 |
52 void trace(Visitor*); | 51 void trace(Visitor*); |
53 | 52 |
54 private: | 53 private: |
55 StyleSheetList(TreeScope*); | 54 StyleSheetList(TreeScope*); |
56 const Vector<RefPtr<StyleSheet> >& styleSheets(); | 55 const Vector<RefPtr<StyleSheet> >& styleSheets(); |
57 | 56 |
58 TreeScope* m_treeScope; | 57 TreeScope* m_treeScope; |
59 Vector<RefPtr<StyleSheet> > m_detachedStyleSheets; | 58 Vector<RefPtr<StyleSheet> > m_detachedStyleSheets; |
60 }; | 59 }; |
61 | 60 |
62 } // namespace WebCore | 61 } // namespace WebCore |
63 | 62 |
64 #endif // StyleSheetList_h | 63 #endif // StyleSheetList_h |
OLD | NEW |