| 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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
| 25 * | 25 * |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef StyleSheetCollection_h | 28 #ifndef StyleSheetCollection_h |
| 29 #define StyleSheetCollection_h | 29 #define StyleSheetCollection_h |
| 30 | 30 |
| 31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "platform/heap/Handle.h" | 32 #include "platform/heap/Handle.h" |
| 33 #include "wtf/Allocator.h" | 33 #include "wtf/Allocator.h" |
| 34 #include "wtf/RefPtr.h" | |
| 35 #include "wtf/Vector.h" | 34 #include "wtf/Vector.h" |
| 36 | 35 |
| 37 namespace blink { | 36 namespace blink { |
| 38 | 37 |
| 39 class CSSStyleSheet; | 38 class CSSStyleSheet; |
| 40 class StyleSheet; | 39 class StyleSheet; |
| 41 | 40 |
| 42 class CORE_EXPORT StyleSheetCollection : public GarbageCollected<StyleSheetColle
ction> { | 41 class CORE_EXPORT StyleSheetCollection : public GarbageCollected<StyleSheetColle
ction> { |
| 43 WTF_MAKE_NONCOPYABLE(StyleSheetCollection); | 42 WTF_MAKE_NONCOPYABLE(StyleSheetCollection); |
| 44 public: | 43 public: |
| (...skipping 13 matching lines...) Expand all Loading... |
| 58 DECLARE_VIRTUAL_TRACE(); | 57 DECLARE_VIRTUAL_TRACE(); |
| 59 | 58 |
| 60 protected: | 59 protected: |
| 61 HeapVector<Member<StyleSheet>> m_styleSheetsForStyleSheetList; | 60 HeapVector<Member<StyleSheet>> m_styleSheetsForStyleSheetList; |
| 62 HeapVector<Member<CSSStyleSheet>> m_activeAuthorStyleSheets; | 61 HeapVector<Member<CSSStyleSheet>> m_activeAuthorStyleSheets; |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 } // namespace blink | 64 } // namespace blink |
| 66 | 65 |
| 67 #endif // StyleSheetCollection_h | 66 #endif // StyleSheetCollection_h |
| OLD | NEW |