Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: Source/core/css/StyleSheetList.h

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix teardown of StyleEngine Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; } 46 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; }
47 47
48 void detachFromDocument(); 48 void detachFromDocument();
49 CSSStyleSheet* anonymousNamedGetter(const AtomicString&); 49 CSSStyleSheet* anonymousNamedGetter(const AtomicString&);
50 50
51 void trace(Visitor*); 51 void trace(Visitor*);
52 52
53 private: 53 private:
54 StyleSheetList(TreeScope*); 54 StyleSheetList(TreeScope*);
55 const Vector<RefPtr<StyleSheet> >& styleSheets(); 55 const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& styleSheets();
56 56
57 TreeScope* m_treeScope; 57 TreeScope* m_treeScope;
haraken 2014/03/12 11:08:21 This raw pointer looks safe since it's cleared in
Erik Corry 2014/03/12 11:48:57 Done.
58 Vector<RefPtr<StyleSheet> > m_detachedStyleSheets; 58 WillBeHeapVector<RefPtrWillBeMember<StyleSheet> > m_detachedStyleSheets;
59 }; 59 };
60 60
61 } // namespace WebCore 61 } // namespace WebCore
62 62
63 #endif // StyleSheetList_h 63 #endif // StyleSheetList_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698