| 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 17 matching lines...) Expand all Loading... |
| 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/ScriptWrappable.h" | 33 #include "bindings/core/v8/ScriptWrappable.h" |
| 34 #include "bindings/core/v8/TraceWrapperMember.h" | 34 #include "bindings/core/v8/TraceWrapperMember.h" |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/css/ActiveStyleSheets.h" | 36 #include "core/css/ActiveStyleSheets.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "wtf/Allocator.h" | 38 #include "platform/wtf/Allocator.h" |
| 39 #include "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>, |
| 47 public TraceWrapperBase { | 47 public TraceWrapperBase { |
| 48 WTF_MAKE_NONCOPYABLE(StyleSheetCollection); | 48 WTF_MAKE_NONCOPYABLE(StyleSheetCollection); |
| 49 | 49 |
| (...skipping 24 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 |