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

Unified Diff: Source/platform/graphics/Canvas2DImageBufferSurface.h

Issue 455863002: Fixing bug in RecordingImageBufferSurface::writePixels when using DisplayList2DCanvas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/platform/graphics/Canvas2DLayerBridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/Canvas2DImageBufferSurface.h
diff --git a/Source/platform/graphics/Canvas2DImageBufferSurface.h b/Source/platform/graphics/Canvas2DImageBufferSurface.h
index 95c433fdbe721de38ec4d4d4256af1df70438937..0a2cbcb7182b847ac9453831e5546953bf7f2f66 100644
--- a/Source/platform/graphics/Canvas2DImageBufferSurface.h
+++ b/Source/platform/graphics/Canvas2DImageBufferSurface.h
@@ -54,7 +54,7 @@ public:
// ImageBufferSurface implementation
virtual void finalizeFrame() OVERRIDE { m_layerBridge->finalizeFrame(); }
- virtual void willReadback() OVERRIDE { m_layerBridge->willReadback(); }
+ virtual void willAccessPixels() OVERRIDE { m_layerBridge->willAccessPixels(); }
virtual SkCanvas* canvas() const OVERRIDE { return m_layerBridge->canvas(); }
virtual bool isValid() const OVERRIDE { return m_layerBridge && m_layerBridge->checkSurfaceValid(); }
virtual bool restore() OVERRIDE { return m_layerBridge->restoreSurface(); }
« no previous file with comments | « no previous file | Source/platform/graphics/Canvas2DLayerBridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698