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

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

Issue 1532473002: Add a origin clean flag in ImageBitmap class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: take care of single security origin Created 4 years, 11 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/ImageBufferSurface.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp
index 9bf60796d027bd4089bce72b1922b06ad77deb16..3ad711206f493b6696b164f924f007115feb0164 100644
--- a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp
@@ -74,7 +74,7 @@ void ImageBufferSurface::draw(GraphicsContext& context, const FloatRect& destRec
if (!snapshot)
return;
- RefPtr<Image> image = StaticBitmapImage::create(snapshot.release());
+ RefPtr<Image> image = StaticBitmapImage::create(snapshot.release(), HasSingleSecurityOrigin);
context.drawImage(image.get(), destRect, srcRect, op);
}

Powered by Google App Engine
This is Rietveld 408576698