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

Unified Diff: Source/core/dom/Document.h

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
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index db8a9538b3bc4e32b91ee151aaff686bedc8c68e..f62182afac7ed98edd7522b84eb11ece1d721003 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -439,7 +439,7 @@ public:
void unscheduleUseShadowTreeUpdate(SVGUseElement&);
// FIXME: SVG filters should change to store the filter on the RenderStyle
- // instead of the RenderObject so we can get rid of this hack.
+ // instead of the LayoutObject so we can get rid of this hack.
void scheduleSVGFilterLayerUpdateHack(Element&);
void unscheduleSVGFilterLayerUpdateHack(Element&);
@@ -976,8 +976,8 @@ public:
bool haveImportsLoaded() const;
void didLoadAllImports();
- void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObject&);
- void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject&);
+ void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, LayoutObject&);
+ void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, LayoutObject&);
bool hasActiveParser();
unsigned activeParserCount() { return m_activeParserCount; }

Powered by Google App Engine
This is Rietveld 408576698