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

Unified Diff: Source/core/dom/DocumentStyleSheetCollection.h

Issue 196513007: Oilpan: Reapply: Remove all the RefPtrs and most of the raw pointers to style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix assertion for global persistents 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/ProcessingInstruction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentStyleSheetCollection.h
diff --git a/Source/core/dom/DocumentStyleSheetCollection.h b/Source/core/dom/DocumentStyleSheetCollection.h
index e277d2472b0327f866e5637b9ccfd6ec7d7a437c..c49c6ec09497c2530a9c3b0b40c83d982c78f931 100644
--- a/Source/core/dom/DocumentStyleSheetCollection.h
+++ b/Source/core/dom/DocumentStyleSheetCollection.h
@@ -39,13 +39,19 @@ class StyleEngine;
class TreeScope;
class DocumentStyleSheetCollection FINAL : public TreeScopeStyleSheetCollection {
- WTF_MAKE_NONCOPYABLE(DocumentStyleSheetCollection); WTF_MAKE_FAST_ALLOCATED;
+ WTF_MAKE_NONCOPYABLE(DocumentStyleSheetCollection);
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
explicit DocumentStyleSheetCollection(TreeScope&);
bool updateActiveStyleSheets(StyleEngine*, StyleResolverUpdateMode);
void collectStyleSheets(StyleEngine*, DocumentStyleSheetCollector&);
+ virtual void trace(Visitor* visitor) OVERRIDE
+ {
+ TreeScopeStyleSheetCollection::trace(visitor);
+ }
+
private:
void collectStyleSheetsFromCandidates(StyleEngine*, DocumentStyleSheetCollector&);
};
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/ProcessingInstruction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698