OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
7 * rights reserved. | 7 * rights reserved. |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 12 matching lines...) Expand all Loading... |
23 * You should have received a copy of the GNU Library General Public License | 23 * You should have received a copy of the GNU Library General Public License |
24 * along with this library; see the file COPYING.LIB. If not, write to | 24 * along with this library; see the file COPYING.LIB. If not, write to |
25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 * Boston, MA 02110-1301, USA. | 26 * Boston, MA 02110-1301, USA. |
27 * | 27 * |
28 */ | 28 */ |
29 | 29 |
30 #ifndef StyleSheetCollection_h | 30 #ifndef StyleSheetCollection_h |
31 #define StyleSheetCollection_h | 31 #define StyleSheetCollection_h |
32 | 32 |
33 #include "bindings/core/v8/TraceWrapperMember.h" | |
34 #include "core/CoreExport.h" | 33 #include "core/CoreExport.h" |
35 #include "core/css/ActiveStyleSheets.h" | 34 #include "core/css/ActiveStyleSheets.h" |
36 #include "platform/bindings/ScriptWrappable.h" | 35 #include "platform/bindings/ScriptWrappable.h" |
| 36 #include "platform/bindings/TraceWrapperMember.h" |
37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
38 #include "platform/wtf/Allocator.h" | 38 #include "platform/wtf/Allocator.h" |
39 #include "platform/wtf/Vector.h" | 39 #include "platform/wtf/Vector.h" |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
43 class StyleSheet; | 43 class StyleSheet; |
44 | 44 |
45 class CORE_EXPORT StyleSheetCollection | 45 class CORE_EXPORT StyleSheetCollection |
46 : public GarbageCollected<StyleSheetCollection>, | 46 : public GarbageCollected<StyleSheetCollection>, |
(...skipping 27 matching lines...) Expand all Loading... |
74 protected: | 74 protected: |
75 StyleSheetCollection(); | 75 StyleSheetCollection(); |
76 | 76 |
77 HeapVector<TraceWrapperMember<StyleSheet>> style_sheets_for_style_sheet_list_; | 77 HeapVector<TraceWrapperMember<StyleSheet>> style_sheets_for_style_sheet_list_; |
78 ActiveStyleSheetVector active_author_style_sheets_; | 78 ActiveStyleSheetVector active_author_style_sheets_; |
79 }; | 79 }; |
80 | 80 |
81 } // namespace blink | 81 } // namespace blink |
82 | 82 |
83 #endif // StyleSheetCollection_h | 83 #endif // StyleSheetCollection_h |
OLD | NEW |