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

Unified Diff: third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h b/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h
index 60889e5f494d9fb3813a1f99c2d2c1adf84f0211..47fc9125db13da83a8816c4a78d9a5a90c413079 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.h
@@ -50,13 +50,13 @@ public:
private:
explicit CanvasFontCache(Document&);
void schedulePruningIfNeeded();
- typedef WillBeHeapHashMap<String, RefPtrWillBeMember<MutableStylePropertySet>> MutableStylePropertyMap;
+ typedef HeapHashMap<String, Member<MutableStylePropertySet>> MutableStylePropertyMap;
HashMap<String, Font> m_fontsResolvedUsingDefaultStyle;
MutableStylePropertyMap m_fetchedFonts;
ListHashSet<String> m_fontLRUList;
OwnPtr<FontCachePurgePreventer> m_mainCachePurgePreventer;
- RawPtrWillBeMember<Document> m_document;
+ Member<Document> m_document;
RefPtr<ComputedStyle> m_defaultFontStyle;
bool m_pruningScheduled;
};

Powered by Google App Engine
This is Rietveld 408576698