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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FilterEffect.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/platform/graphics/filters/FilterEffect.h
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
index 83dde8043d2606c7e5e45852c67a1f526d0ddc69..1fcf6ff2a3437dce0e7d7aef0e2e03eeecebdc03 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
+++ b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
@@ -44,7 +44,7 @@ class TextStream;
class SkiaImageFilterBuilder;
-typedef WillBeHeapVector<RefPtrWillBeMember<FilterEffect>> FilterEffectVector;
+typedef HeapVector<Member<FilterEffect>> FilterEffectVector;
enum FilterEffectType {
FilterEffectTypeUnknown,
@@ -61,7 +61,7 @@ enum DetermineSubregionFlag {
typedef int DetermineSubregionFlags;
-class PLATFORM_EXPORT FilterEffect : public RefCountedWillBeGarbageCollectedFinalized<FilterEffect> {
+class PLATFORM_EXPORT FilterEffect : public GarbageCollectedFinalized<FilterEffect> {
WTF_MAKE_NONCOPYABLE(FilterEffect);
public:
virtual ~FilterEffect();
@@ -175,7 +175,7 @@ private:
// The maximum size of a filter primitive. In SVG this is the primitive subregion in absolute coordinate space.
// The absolute paint rect should never be bigger than m_maxEffectRect.
FloatRect m_maxEffectRect;
- RawPtrWillBeMember<Filter> m_filter;
+ Member<Filter> m_filter;
// The following member variables are SVG specific and will move to LayoutSVGResourceFilterPrimitive.
// See bug https://bugs.webkit.org/show_bug.cgi?id=45614.

Powered by Google App Engine
This is Rietveld 408576698