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

Unified Diff: third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp

Issue 1309393007: [poc] redecode Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resetColorProfileForTesting rename Created 5 years, 1 month 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/BitmapImageTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
index 8f6a2118df79fff3ab5205bf737a89ea8dfe5db3..4c805ea9c5f6127e67f9c0375043c11312112e89 100644
--- a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
@@ -46,14 +46,11 @@ public:
public:
FakeImageObserver() : m_lastDecodedSizeChangedDelta(0) { }
- virtual void decodedSizeChanged(const Image*, int delta)
- {
- m_lastDecodedSizeChangedDelta = delta;
- }
+ virtual void decodedSizeChanged(const Image*, int delta) { m_lastDecodedSizeChangedDelta = delta; }
+ void deviceProfileChanged(const Image*, ColorSpaceProfile*) override { }
void didDraw(const Image*) override { }
bool shouldPauseAnimation(const Image*) override { return false; }
void animationAdvanced(const Image*) override { }
-
virtual void changedInRect(const Image*, const IntRect&) { }
int m_lastDecodedSizeChangedDelta;

Powered by Google App Engine
This is Rietveld 408576698