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

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

Issue 2939243002: cc/blink: Veto checker-imaging for multipart image resources. (Closed)
Patch Set: tested Created 3 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: third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp b/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
index 7d693289215a57779c35e59a33a41e9f9b66208c..e013bda256b17c81b2522ff86f6d4054996482ec 100644
--- a/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
+++ b/third_party/WebKit/Source/platform/graphics/BitmapImage.cpp
@@ -59,8 +59,8 @@ PassRefPtr<BitmapImage> BitmapImage::CreateWithOrientationForTesting(
return result.Release();
}
-BitmapImage::BitmapImage(ImageObserver* observer)
- : Image(observer),
+BitmapImage::BitmapImage(ImageObserver* observer, bool is_multipart)
+ : Image(observer, is_multipart),
current_frame_(0),
cached_frame_index_(0),
animation_policy_(kImageAnimationPolicyAllowed),
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/BitmapImage.h ('k') | third_party/WebKit/Source/platform/graphics/Image.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698