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

Unified Diff: Source/core/html/canvas/CanvasRenderingContext2D.cpp

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/html/HTMLWBRElement.cpp ('k') | Source/core/html/forms/BaseButtonInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/CanvasRenderingContext2D.cpp
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.cpp b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
index c3c0c4e058a654e8d2a06ce6a770ec071aec27cd..0267249aac9813ee3e0d7a21c4038db08c068b74 100644
--- a/Source/core/html/canvas/CanvasRenderingContext2D.cpp
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
@@ -1187,7 +1187,7 @@ void CanvasRenderingContext2D::scrollPathIntoView(Path2D* path2d)
void CanvasRenderingContext2D::scrollPathIntoViewInternal(const Path& path)
{
- RenderObject* renderer = canvas()->renderer();
+ LayoutObject* renderer = canvas()->renderer();
RenderBox* renderBox = canvas()->renderBox();
if (!renderer || !renderBox || !state().m_invertibleCTM || path.isEmpty())
return;
« no previous file with comments | « Source/core/html/HTMLWBRElement.cpp ('k') | Source/core/html/forms/BaseButtonInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698