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

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

Issue 1858163002: Rename inDocument() to inShadowIncludingDocument() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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
« 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 b150850fc164e40c4a8d28885dcf05fba00cdfdb..59dfe517ee65e35ac3386e8c700e09fe29315e32 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->inDocument() ? "(Document DOM trees)" : "(Detached DOM trees)";
+ return m_root->inShadowIncludingDocument() ? "(Document DOM trees)" : "(Detached DOM trees)";
}
const char* RetainedDOMInfo::GetLabel()
{
- return m_root->inDocument() ? "Document DOM tree" : "Detached DOM tree";
+ return m_root->inShadowIncludingDocument() ? "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