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

Unified Diff: third_party/WebKit/Source/core/dom/Node.h

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/WebKit/Source/core/dom/Node.h
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
index 1efce1287e4568084cc78c51e92915c2f06fee5a..4bdbdc1b79de0db6e9f9bb5ab34237d816ac2ca4 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -536,7 +536,7 @@ public:
// Attaches this node to the layout tree. This calculates the style to be applied to the node and creates an
// appropriate LayoutObject which will be inserted into the tree (except when the style has display: none). This
// makes the node visible in the FrameView.
- virtual void attach(const AttachContext& = AttachContext());
+ virtual void attachLayoutTree(const AttachContext& = AttachContext());
// Detaches the node from the layout tree, making it invisible in the rendered view. This method will remove
// the node's layout object from the layout tree and delete it.

Powered by Google App Engine
This is Rietveld 408576698