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

Unified Diff: third_party/WebKit/Source/core/html/HTMLCanvasElement.h

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: DrawingDisplayItem Created 3 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/core/html/HTMLCanvasElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
index f7a7ff5d3e932d2bd113ffa9d67803e19ffb71b0..70ee8cbf1192033d64be2c193bc720e8f20377f5 100644
--- a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
@@ -137,9 +137,9 @@ class CORE_EXPORT HTMLCanvasElement final
void paint(GraphicsContext&, const LayoutRect&);
- SkCanvas* drawingCanvas() const;
+ PaintCanvas* drawingCanvas() const;
void disableDeferral(DisableDeferralReason) const;
- SkCanvas* existingDrawingCanvas() const;
+ PaintCanvas* existingDrawingCanvas() const;
CanvasRenderingContext* renderingContext() const { return m_context.get(); }
@@ -197,7 +197,7 @@ class CORE_EXPORT HTMLCanvasElement final
bool isDirty() override { return !m_dirtyRect.isEmpty(); }
void didDisableAcceleration() override;
void didFinalizeFrame() override;
- void restoreCanvasMatrixClipStack(SkCanvas*) const override;
+ void restoreCanvasMatrixClipStack(PaintCanvas*) const override;
void doDeferredPaintInvalidation();
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrame.cpp ('k') | third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698