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

Unified Diff: third_party/WebKit/Source/core/css/resolver/MatchResult.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/resolver/MatchResult.h
diff --git a/third_party/WebKit/Source/core/css/resolver/MatchResult.h b/third_party/WebKit/Source/core/css/resolver/MatchResult.h
index 1011b5bb924402cfab2e2ac7550837440babd2f5..dd649255e6b47c8cc99f9695faef8612353b45c2 100644
--- a/third_party/WebKit/Source/core/css/resolver/MatchResult.h
+++ b/third_party/WebKit/Source/core/css/resolver/MatchResult.h
@@ -41,7 +41,7 @@ public:
DECLARE_TRACE();
- RefPtrWillBeMember<StylePropertySet> properties;
+ Member<StylePropertySet> properties;
union {
struct {
@@ -59,7 +59,7 @@ WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::MatchedProperties);
namespace blink {
-using MatchedPropertiesVector = WillBeHeapVector<MatchedProperties, 64>;
+using MatchedPropertiesVector = HeapVector<MatchedProperties, 64>;
// MatchedPropertiesRange is used to represent a subset of the matched properties from
// a given origin, for instance UA rules, author rules, or a shadow tree scope. This is

Powered by Google App Engine
This is Rietveld 408576698