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

Unified Diff: Source/core/paint/DeprecatedPaintLayer.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
Index: Source/core/paint/DeprecatedPaintLayer.h
diff --git a/Source/core/paint/DeprecatedPaintLayer.h b/Source/core/paint/DeprecatedPaintLayer.h
index b1872373813d3f1c01f94ef321078798b1d27538..672ace08f1e987af91de0be54c3083712db81a5b 100644
--- a/Source/core/paint/DeprecatedPaintLayer.h
+++ b/Source/core/paint/DeprecatedPaintLayer.h
@@ -60,7 +60,7 @@
namespace blink {
-class FilterEffectRenderer;
+class FilterEffectBuilder;
class FilterOperations;
class HitTestRequest;
class HitTestResult;
@@ -348,10 +348,10 @@ public:
FilterOperations computeFilterOperations(const ComputedStyle&);
bool paintsWithFilters() const;
- FilterEffectRenderer* filterRenderer() const
+ FilterEffectBuilder* filterEffectBuilder() const
{
DeprecatedPaintLayerFilterInfo* filterInfo = this->filterInfo();
- return filterInfo ? filterInfo->renderer() : 0;
+ return filterInfo ? filterInfo->builder() : 0;
}
DeprecatedPaintLayerFilterInfo* filterInfo() const { return hasFilterInfo() ? DeprecatedPaintLayerFilterInfo::filterInfoForLayer(this) : 0; }
@@ -493,7 +493,7 @@ public:
void updateDescendantDependentFlags();
void updateDescendantDependentFlagsForEntireSubtree();
- void updateOrRemoveFilterEffectRenderer();
+ void updateOrRemoveFilterEffectBuilder();
void updateSelfPaintingLayer();
« no previous file with comments | « Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698