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

Unified Diff: Source/core/paint/HTMLCanvasPainter.h

Issue 930833003: Move and rename RenderReplaced and RenderHTMLCanvas to Layout{Replaced,HTMLCanvas}. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No need to declare renderName() at all. Created 5 years, 10 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 | « Source/core/layout/LayoutVideo.cpp ('k') | Source/core/paint/HTMLCanvasPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/HTMLCanvasPainter.h
diff --git a/Source/core/paint/HTMLCanvasPainter.h b/Source/core/paint/HTMLCanvasPainter.h
index 790390ba6e4cc4efe5b218c3194fc6144642534f..e1e7550f0044a08723868c5a5b5041d16aadfc66 100644
--- a/Source/core/paint/HTMLCanvasPainter.h
+++ b/Source/core/paint/HTMLCanvasPainter.h
@@ -9,15 +9,15 @@ namespace blink {
struct PaintInfo;
class LayoutPoint;
-class RenderHTMLCanvas;
+class LayoutHTMLCanvas;
class HTMLCanvasPainter {
public:
- HTMLCanvasPainter(RenderHTMLCanvas& renderHTMLCanvas) : m_renderHTMLCanvas(renderHTMLCanvas) { }
+ HTMLCanvasPainter(LayoutHTMLCanvas& layoutHTMLCanvas) : m_layoutHTMLCanvas(layoutHTMLCanvas) { }
void paintReplaced(const PaintInfo&, const LayoutPoint&);
private:
- RenderHTMLCanvas& m_renderHTMLCanvas;
+ LayoutHTMLCanvas& m_layoutHTMLCanvas;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutVideo.cpp ('k') | Source/core/paint/HTMLCanvasPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698