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

Unified Diff: Source/core/dom/NodeRenderStyle.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
« no previous file with comments | « Source/core/dom/NodeRareData.cpp ('k') | Source/core/dom/NodeRenderingTraversal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NodeRenderStyle.h
diff --git a/Source/core/dom/NodeRenderStyle.h b/Source/core/dom/NodeRenderStyle.h
index 5a38d3a1b810438000f3e81529da1a2b20510afd..d6e3cbf2dee68a3aa9d80b1a8f5c3aa8ad0c6fb2 100644
--- a/Source/core/dom/NodeRenderStyle.h
+++ b/Source/core/dom/NodeRenderStyle.h
@@ -28,14 +28,14 @@
#include "core/dom/Node.h"
#include "core/dom/NodeRenderingTraversal.h"
#include "core/html/HTMLOptGroupElement.h"
-#include "core/rendering/RenderObject.h"
+#include "core/layout/LayoutObject.h"
#include "core/rendering/style/RenderStyle.h"
namespace blink {
inline RenderStyle* Node::renderStyle() const
{
- if (RenderObject* renderer = this->renderer())
+ if (LayoutObject* renderer = this->renderer())
return renderer->style();
// <option> and <optgroup> can be styled even if they don't get renderers,
// so they store their style internally and return it through nonRendererStyle().
« no previous file with comments | « Source/core/dom/NodeRareData.cpp ('k') | Source/core/dom/NodeRenderingTraversal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698