Title: [169274] branches/safari-537.77-branch/Source/WebCore/platform/graphics/filters/FilterOperation.h
Revision
169274
Author
lforsch...@apple.com
Date
2014-05-23 12:10:30 -0700 (Fri, 23 May 2014)

Log Message

Build fix after rdar://problem/16975484.

Modified Paths


Diff

Modified: branches/safari-537.77-branch/Source/WebCore/platform/graphics/filters/FilterOperation.h (169273 => 169274)


--- branches/safari-537.77-branch/Source/WebCore/platform/graphics/filters/FilterOperation.h	2014-05-23 19:01:27 UTC (rev 169273)
+++ branches/safari-537.77-branch/Source/WebCore/platform/graphics/filters/FilterOperation.h	2014-05-23 19:10:30 UTC (rev 169274)
@@ -152,7 +152,7 @@
     OperationType m_representedType;
 };
 
-FILTEROPERATION_TYPE_CASTS(DefaultFilterOperation, type() == FilterOperation::DEFAULT);
+FILTEROPERATION_TYPE_CASTS(DefaultFilterOperation, getOperationType() == FilterOperation::DEFAULT);
 
 
 class PassthroughFilterOperation : public FilterOperation {
@@ -175,7 +175,7 @@
     }
 };
 
-FILTEROPERATION_TYPE_CASTS(PassthroughFilterOperation, type() == FilterOperation::PASSTHROUGH);
+FILTEROPERATION_TYPE_CASTS(PassthroughFilterOperation, getOperationType() == FilterOperation::PASSTHROUGH);
 
 class ReferenceFilterOperation : public FilterOperation {
 public:
@@ -212,7 +212,7 @@
     RefPtr<FilterEffect> m_filterEffect;
 };
 
-FILTEROPERATION_TYPE_CASTS(ReferenceFilterOperation, type() == FilterOperation::REFERENCE);
+FILTEROPERATION_TYPE_CASTS(ReferenceFilterOperation, getOperationType() == FilterOperation::REFERENCE);
 
 // GRAYSCALE, SEPIA, SATURATE and HUE_ROTATE are variations on a basic color matrix effect.
 // For HUE_ROTATE, the angle of rotation is stored in m_amount.
@@ -299,7 +299,7 @@
     Length m_stdDeviation;
 };
 
-FILTEROPERATION_TYPE_CASTS(BlurFilterOperation, type() == FilterOperation::BLUR);
+FILTEROPERATION_TYPE_CASTS(BlurFilterOperation, getOperationType() == FilterOperation::BLUR);
 
 class DropShadowFilterOperation : public FilterOperation {
 public:
@@ -335,7 +335,7 @@
     Color m_color;
 };
 
-FILTEROPERATION_TYPE_CASTS(DropShadowFilterOperation, type() == FilterOperation::DROP_SHADOW);
+FILTEROPERATION_TYPE_CASTS(DropShadowFilterOperation, getOperationType() == FilterOperation::DROP_SHADOW);
 
 } // namespace WebCore
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to