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

Unified Diff: third_party/WebKit/Source/core/css/RuleFeature.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/RuleFeature.h
diff --git a/third_party/WebKit/Source/core/css/RuleFeature.h b/third_party/WebKit/Source/core/css/RuleFeature.h
index 77502aa9796e101c7ba26419dc8613487996944e..ff963bdc8895251b5cc248e8bd29ee871b50b606 100644
--- a/third_party/WebKit/Source/core/css/RuleFeature.h
+++ b/third_party/WebKit/Source/core/css/RuleFeature.h
@@ -45,7 +45,7 @@ public:
DECLARE_TRACE();
- RawPtrWillBeMember<StyleRule> rule;
+ Member<StyleRule> rule;
unsigned selectorIndex;
bool hasDocumentSecurityOrigin;
};
@@ -96,8 +96,8 @@ public:
DECLARE_TRACE();
- WillBeHeapVector<RuleFeature> siblingRules;
- WillBeHeapVector<RuleFeature> uncommonAttributeRules;
+ HeapVector<RuleFeature> siblingRules;
+ HeapVector<RuleFeature> uncommonAttributeRules;
protected:
InvalidationSet* invalidationSetForSelector(const CSSSelector&, InvalidationType);
« no previous file with comments | « third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp ('k') | third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698