| 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;
|
| };
|
|
|