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

Unified Diff: third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.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/MatchedPropertiesCache.h
diff --git a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
index c7d8d6e9d401a99562c0dbcfe7df2d3bf2bc6ae8..101c8e9e2fa57bc76fd35b48775c16e020a6f4c9 100644
--- a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
+++ b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.h
@@ -36,10 +36,9 @@ namespace blink {
class ComputedStyle;
class StyleResolverState;
-class CachedMatchedProperties final : public NoBaseWillBeGarbageCollectedFinalized<CachedMatchedProperties> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CachedMatchedProperties);
+class CachedMatchedProperties final : public GarbageCollectedFinalized<CachedMatchedProperties> {
public:
- WillBeHeapVector<MatchedProperties> matchedProperties;
+ HeapVector<MatchedProperties> matchedProperties;
RefPtr<ComputedStyle> computedStyle;
RefPtr<ComputedStyle> parentComputedStyle;

Powered by Google App Engine
This is Rietveld 408576698