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

Unified Diff: third_party/WebKit/Source/core/css/invalidation/StyleSheetInvalidationAnalysis.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/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;

Powered by Google App Engine
This is Rietveld 408576698