| Index: Source/platform/graphics/filters/FEComponentTransfer.h
|
| diff --git a/Source/core/platform/graphics/filters/FEComponentTransfer.h b/Source/platform/graphics/filters/FEComponentTransfer.h
|
| similarity index 91%
|
| rename from Source/core/platform/graphics/filters/FEComponentTransfer.h
|
| rename to Source/platform/graphics/filters/FEComponentTransfer.h
|
| index 44e42d06edd2b09b44fbf911a1b02715e34a965d..d71e82f02ff9ee72de78cbb1fa732ed8a1f66828 100644
|
| --- a/Source/core/platform/graphics/filters/FEComponentTransfer.h
|
| +++ b/Source/platform/graphics/filters/FEComponentTransfer.h
|
| @@ -23,9 +23,8 @@
|
| #ifndef FEComponentTransfer_h
|
| #define FEComponentTransfer_h
|
|
|
| -#include "platform/graphics/filters/FilterEffect.h"
|
| -
|
| #include "platform/graphics/filters/Filter.h"
|
| +#include "platform/graphics/filters/FilterEffect.h"
|
| #include "wtf/Vector.h"
|
|
|
| namespace WebCore {
|
| @@ -61,10 +60,10 @@ struct ComponentTransferFunction {
|
| Vector<float> tableValues;
|
| };
|
|
|
| -class FEComponentTransfer : public FilterEffect {
|
| +class PLATFORM_EXPORT FEComponentTransfer : public FilterEffect {
|
| public:
|
| static PassRefPtr<FEComponentTransfer> create(Filter*, const ComponentTransferFunction& redFunc, const ComponentTransferFunction& greenFunc,
|
| - const ComponentTransferFunction& blueFunc, const ComponentTransferFunction& alphaFunc);
|
| + const ComponentTransferFunction& blueFunc, const ComponentTransferFunction& alphaFunc);
|
|
|
| ComponentTransferFunction redFunction() const;
|
| void setRedFunction(const ComponentTransferFunction&);
|
| @@ -84,7 +83,7 @@ public:
|
|
|
| private:
|
| FEComponentTransfer(Filter*, const ComponentTransferFunction& redFunc, const ComponentTransferFunction& greenFunc,
|
| - const ComponentTransferFunction& blueFunc, const ComponentTransferFunction& alphaFunc);
|
| + const ComponentTransferFunction& blueFunc, const ComponentTransferFunction& alphaFunc);
|
|
|
| virtual void applySoftware() OVERRIDE;
|
| virtual bool applySkia() OVERRIDE;
|
|
|