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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp

Issue 2727133002: Remove ColorBehavior argument to Image::imageForCurrentFrame (Closed)
Patch Set: Rebase Created 3 years, 9 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: third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
index 013b8aaadfab36f7210a3f8da5923f009730fb85..e1e46b64b6caf44e62030d3fcc735ee9dbb35699 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
@@ -265,10 +265,7 @@ void SVGImage::drawForContainer(PaintCanvas* canvas,
ClampImageToSourceRect, url);
}
-sk_sp<SkImage> SVGImage::imageForCurrentFrame(
- const ColorBehavior& colorBehavior) {
- // TODO(ccameron): This function should not ignore |colorBehavior|.
- // https://crbug.com/667431
+sk_sp<SkImage> SVGImage::imageForCurrentFrame() {
return imageForCurrentFrameForContainer(KURL(), size());
}

Powered by Google App Engine
This is Rietveld 408576698