| Index: third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.h
|
| diff --git a/third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.h b/third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.h
|
| index 02f165c2041fa9522c64c97e17cb523f35452108..9f877a5a4f0b58c9f57c8f660158685041f0ece3 100644
|
| --- a/third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.h
|
| +++ b/third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.h
|
| @@ -41,7 +41,7 @@ class TreeScope;
|
| class StyleSheetInvalidationAnalysis {
|
| STACK_ALLOCATED();
|
| public:
|
| - StyleSheetInvalidationAnalysis(const TreeScope&, const WillBeHeapVector<RawPtrWillBeMember<StyleSheetContents>>&);
|
| + StyleSheetInvalidationAnalysis(const TreeScope&, const HeapVector<Member<StyleSheetContents>>&);
|
|
|
| bool dirtiesAllStyle() const { return m_dirtiesAllStyle; }
|
| void invalidateStyle();
|
| @@ -50,7 +50,7 @@ private:
|
|
|
| void analyzeStyleSheet(StyleSheetContents*);
|
|
|
| - RawPtrWillBeMember<const TreeScope> m_treeScope;
|
| + Member<const TreeScope> m_treeScope;
|
| HashSet<StringImpl*> m_idScopes;
|
| HashSet<StringImpl*> m_classScopes;
|
|
|
|
|