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

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

Issue 1086873002: Rename NodeRenderingTraversal to LayoutTreeBuilderTraversal (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 8 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/NodeComputedStyle.h
diff --git a/Source/core/dom/NodeComputedStyle.h b/Source/core/dom/NodeComputedStyle.h
index bb73f1c9f60091b9662b54d44e9b7ddf40600c4f..1c7f1d70f53c78281667be0cc204c8d9b086d409 100644
--- a/Source/core/dom/NodeComputedStyle.h
+++ b/Source/core/dom/NodeComputedStyle.h
@@ -25,8 +25,8 @@
#ifndef NodeComputedStyle_h
#define NodeComputedStyle_h
+#include "core/dom/LayoutTreeBuilderTraversal.h"
#include "core/dom/Node.h"
-#include "core/dom/NodeRenderingTraversal.h"
#include "core/dom/shadow/InsertionPoint.h"
#include "core/html/HTMLOptGroupElement.h"
#include "core/layout/LayoutObject.h"
@@ -55,7 +55,7 @@ inline const ComputedStyle* Node::parentComputedStyle() const
{
if (isActiveInsertionPoint(*this))
return 0;
- ContainerNode* parent = NodeRenderingTraversal::parent(*this);
+ ContainerNode* parent = LayoutTreeBuilderTraversal::parent(*this);
return parent ? parent->computedStyle() : 0;
}

Powered by Google App Engine
This is Rietveld 408576698