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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp

Issue 2292843002: Remove WTFLogAlways() usages from core/{dom,editing}/. (Closed)
Patch Set: Created 4 years, 4 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/html/parser/HTMLElementStack.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
index 36293ca8dfd1ce727b8e1c79fc89ae3648bfa255..a39f25df0a595ce7b9d3d093548da094b4494c38 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
@@ -620,7 +620,7 @@ DEFINE_TRACE(HTMLElementStack)
void HTMLElementStack::show()
{
for (ElementRecord* record = m_top.get(); record; record = record->next())
- record->element()->showNode();
+ LOG(INFO) << *record->element();
}
#endif

Powered by Google App Engine
This is Rietveld 408576698