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

Unified Diff: third_party/WebKit/Source/platform/graphics/PlaceholderImage.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/platform/graphics/PlaceholderImage.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/PlaceholderImage.cpp b/third_party/WebKit/Source/platform/graphics/PlaceholderImage.cpp
index 48f33db04130f7afd6aede79285bf6ac422bccec..8568839238f05b6ec25ae22fa6484638748a4608 100644
--- a/third_party/WebKit/Source/platform/graphics/PlaceholderImage.cpp
+++ b/third_party/WebKit/Source/platform/graphics/PlaceholderImage.cpp
@@ -25,10 +25,7 @@ const RGBA32 kFillColor = 0x66808080;
PlaceholderImage::~PlaceholderImage() {}
-sk_sp<SkImage> PlaceholderImage::imageForCurrentFrame(
- const ColorBehavior& colorBehavior) {
- // TODO(ccameron): This function should not ignore |colorBehavior|.
- // https://crbug.com/672306
+sk_sp<SkImage> PlaceholderImage::imageForCurrentFrame() {
if (m_imageForCurrentFrame)
return m_imageForCurrentFrame;

Powered by Google App Engine
This is Rietveld 408576698