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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.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/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 0bdff49f1331f63040140de8bc366ab59044b990..baa9860563d99d9404b4cbc779e383a26fcc0e66 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
@@ -90,8 +90,8 @@ class SVGImage::SVGImageLocalFrameClient : public EmptyLocalFrameClient {
SVGImage* image_;
};
-SVGImage::SVGImage(ImageObserver* observer)
- : Image(observer),
+SVGImage::SVGImage(ImageObserver* observer, bool is_multipart)
+ : Image(observer, is_multipart),
paint_controller_(PaintController::Create()),
has_pending_timeline_rewind_(false) {}
« no previous file with comments | « third_party/WebKit/Source/core/svg/graphics/SVGImage.h ('k') | third_party/WebKit/Source/platform/graphics/BitmapImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698