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

Unified Diff: third_party/WebKit/Source/core/svg/SVGResourceClient.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/svg/SVGResourceClient.h
diff --git a/third_party/WebKit/Source/core/svg/SVGResourceClient.h b/third_party/WebKit/Source/core/svg/SVGResourceClient.h
index f1f6f70828b98b6557c622f7818b03f232b0d5d1..e5f1ef33bef77d916bf3c22946659d9f4ffa9bb1 100644
--- a/third_party/WebKit/Source/core/svg/SVGResourceClient.h
+++ b/third_party/WebKit/Source/core/svg/SVGResourceClient.h
@@ -30,8 +30,8 @@ public:
String debugName() const override { return "SVGResourceClient"; }
private:
- WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<SVGFilterElement>> m_internalFilterReferences;
- WillBePersistentHeapVector<RefPtrWillBeMember<DocumentResource>> m_externalFilterReferences;
+ PersistentHeapHashSet<WeakMember<SVGFilterElement>> m_internalFilterReferences;
+ PersistentHeapVector<Member<DocumentResource>> m_externalFilterReferences;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp ('k') | third_party/WebKit/Source/core/svg/SVGResourceClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698