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

Unified Diff: Source/core/platform/graphics/GraphicsLayer.cpp

Issue 15079005: Create a minimal webkit_common static library for use in browser process (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/platform/graphics/GraphicsLayer.cpp
diff --git a/Source/core/platform/graphics/GraphicsLayer.cpp b/Source/core/platform/graphics/GraphicsLayer.cpp
index 1def9e38f3e2bc3f479a46915bd72e9fda685ccd..af9feca0f5615740be36f7ac74e3293f25327ae0 100644
--- a/Source/core/platform/graphics/GraphicsLayer.cpp
+++ b/Source/core/platform/graphics/GraphicsLayer.cpp
@@ -1275,7 +1275,7 @@ static bool copyWebCoreFilterOperationsToWebFilterOperations(const FilterOperati
}
case FilterOperation::DROP_SHADOW: {
const DropShadowFilterOperation& dropShadowOp = *static_cast<const DropShadowFilterOperation*>(&op);
- webFilters.append(WebFilterOperation::createDropShadowFilter(WebPoint(dropShadowOp.x(), dropShadowOp.y()), dropShadowOp.stdDeviation(), dropShadowOp.color().rgb()));
+ webFilters.append(WebFilterOperation::createDropShadowFilter(dropShadowOp.x(), dropShadowOp.y(), dropShadowOp.stdDeviation(), dropShadowOp.color().rgb()));
break;
}
case FilterOperation::CUSTOM:

Powered by Google App Engine
This is Rietveld 408576698