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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/paint/PaintLayerFilterInfo.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
index 7fdf14d8d0452a7de4d69de82ce59a9710d79660..bbf317e3cf1a8a6fe5a3b1792291b0a9d8ef7b55 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerFilterInfo.h
@@ -59,7 +59,7 @@ public:
~PaintLayerFilterInfo() override;
FilterEffectBuilder* builder() const { return m_builder.get(); }
- void setBuilder(PassRefPtrWillBeRawPtr<FilterEffectBuilder>);
+ void setBuilder(RawPtr<FilterEffectBuilder>);
void updateReferenceFilterClients(const FilterOperations&);
@@ -67,7 +67,7 @@ public:
private:
PaintLayer* m_layer;
- RefPtrWillBePersistent<FilterEffectBuilder> m_builder;
+ Persistent<FilterEffectBuilder> m_builder;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698