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

Unified Diff: Source/core/paint/DeprecatedPaintLayerFilterInfo.h

Issue 1092673002: Move FilterEffectRenderer to core/paint/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 years, 8 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
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/paint/DeprecatedPaintLayerFilterInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/DeprecatedPaintLayerFilterInfo.h
diff --git a/Source/core/paint/DeprecatedPaintLayerFilterInfo.h b/Source/core/paint/DeprecatedPaintLayerFilterInfo.h
index 36b5689e953a59662ed5551578f928482728d376..698d4bf1f04a714ea9cf970e96f49ac89aa7af67 100644
--- a/Source/core/paint/DeprecatedPaintLayerFilterInfo.h
+++ b/Source/core/paint/DeprecatedPaintLayerFilterInfo.h
@@ -40,7 +40,7 @@
namespace blink {
-class FilterEffectRenderer;
+class FilterEffectBuilder;
class FilterOperations;
class DeprecatedPaintLayer;
class DeprecatedPaintLayerFilterInfo;
@@ -53,8 +53,8 @@ public:
static DeprecatedPaintLayerFilterInfo* createFilterInfoForLayerIfNeeded(DeprecatedPaintLayer*);
static void removeFilterInfoForLayer(DeprecatedPaintLayer*);
- FilterEffectRenderer* renderer() const { return m_renderer.get(); }
- void setRenderer(PassRefPtrWillBeRawPtr<FilterEffectRenderer>);
+ FilterEffectBuilder* builder() const { return m_builder.get(); }
+ void setBuilder(PassRefPtrWillBeRawPtr<FilterEffectBuilder>);
void updateReferenceFilterClients(const FilterOperations&);
virtual void notifyFinished(Resource*) override;
@@ -66,7 +66,7 @@ private:
DeprecatedPaintLayer* m_layer;
- RefPtrWillBePersistent<FilterEffectRenderer> m_renderer;
+ RefPtrWillBePersistent<FilterEffectBuilder> m_builder;
static DeprecatedPaintLayerFilterInfoMap* s_filterMap;
WillBePersistentHeapVector<RefPtrWillBeMember<Element>> m_internalSVGReferences;
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/paint/DeprecatedPaintLayerFilterInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698