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

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

Issue 211073002: [Oilpan]: Move CSSFontSelectorClient to the oilpan heap using transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/dom/StyleEngine.h
diff --git a/Source/core/dom/StyleEngine.h b/Source/core/dom/StyleEngine.h
index dc6940a39ac08fed4456d34f91c1354e1ec2fd7b..ea16b9e78d938221c3775b08e1555a881277ed9f 100644
--- a/Source/core/dom/StyleEngine.h
+++ b/Source/core/dom/StyleEngine.h
@@ -243,12 +243,12 @@ private:
bool m_ignorePendingStylesheets;
bool m_didCalculateResolver;
- OwnPtr<StyleResolver> m_resolver;
+ OwnPtrWillBeMember<StyleResolver> m_resolver;
RefPtr<CSSFontSelector> m_fontSelector;
- HashMap<AtomicString, StyleSheetContents*> m_textToSheetCache;
- HashMap<StyleSheetContents*, AtomicString> m_sheetToTextCache;
+ WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents> > m_textToSheetCache;
+ WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sheetToTextCache;
};
}

Powered by Google App Engine
This is Rietveld 408576698