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

Unified Diff: Source/core/paint/FilterEffectBuilder.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/DeprecatedPaintLayerPainter.cpp ('k') | Source/core/paint/FilterEffectBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/FilterEffectBuilder.h
diff --git a/Source/core/layout/FilterEffectRenderer.h b/Source/core/paint/FilterEffectBuilder.h
similarity index 81%
rename from Source/core/layout/FilterEffectRenderer.h
rename to Source/core/paint/FilterEffectBuilder.h
index 78626d8d608877fa05d8d5ceacc0330db9cb20c3..06246c209e9747c083c8f6c6bf9cfae1b3b66701 100644
--- a/Source/core/layout/FilterEffectRenderer.h
+++ b/Source/core/paint/FilterEffectBuilder.h
@@ -23,8 +23,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef FilterEffectRenderer_h
-#define FilterEffectRenderer_h
+#ifndef FilterEffectBuilder_h
+#define FilterEffectBuilder_h
#include "platform/graphics/filters/FilterEffect.h"
#include "platform/heap/Handle.h"
@@ -39,15 +39,15 @@ class FilterOperations;
class ReferenceFilter;
class LayoutObject;
-class FilterEffectRenderer final : public RefCountedWillBeGarbageCollectedFinalized<FilterEffectRenderer> {
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(FilterEffectRenderer);
+class FilterEffectBuilder final : public RefCountedWillBeGarbageCollectedFinalized<FilterEffectBuilder> {
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(FilterEffectBuilder);
public:
- static PassRefPtrWillBeRawPtr<FilterEffectRenderer> create()
+ static PassRefPtrWillBeRawPtr<FilterEffectBuilder> create()
{
- return adoptRefWillBeNoop(new FilterEffectRenderer());
+ return adoptRefWillBeNoop(new FilterEffectBuilder());
}
- virtual ~FilterEffectRenderer();
+ virtual ~FilterEffectBuilder();
DECLARE_TRACE();
bool build(LayoutObject* renderer, const FilterOperations&);
@@ -59,7 +59,7 @@ public:
}
private:
- FilterEffectRenderer();
+ FilterEffectBuilder();
RefPtrWillBeMember<FilterEffect> m_lastEffect;
WillBeHeapVector<RefPtrWillBeMember<ReferenceFilter>> m_referenceFilters;
@@ -67,4 +67,4 @@ private:
} // namespace blink
-#endif // FilterEffectRenderer_h
+#endif // FilterEffectBuilder_h
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayerPainter.cpp ('k') | Source/core/paint/FilterEffectBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698