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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp

Issue 2149893003: Rename Node::inShadowIncludingDocument() to Node::isConnected() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
index 59dfe517ee65e35ac3386e8c700e09fe29315e32..3a854ffa5abeb50355955d1fa4bfcf6f804d5a1e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
@@ -78,12 +78,12 @@ intptr_t RetainedDOMInfo::GetHash()
const char* RetainedDOMInfo::GetGroupLabel()
{
- return m_root->inShadowIncludingDocument() ? "(Document DOM trees)" : "(Detached DOM trees)";
+ return m_root->isConnected() ? "(Document DOM trees)" : "(Detached DOM trees)";
}
const char* RetainedDOMInfo::GetLabel()
{
- return m_root->inShadowIncludingDocument() ? "Document DOM tree" : "Detached DOM tree";
+ return m_root->isConnected() ? "Document DOM tree" : "Detached DOM tree";
}
intptr_t RetainedDOMInfo::GetElementCount()
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698