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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 160f3091fffceb51014958a0b069c22a052c0882..5dbf8d895f1764f103350b0fdd31822ba1b14999 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -1318,7 +1318,7 @@ void LayoutObject::showLayoutObject(StringBuilder& stringBuilder) const
while (stringBuilder.length() < showTreeCharacterOffset)
stringBuilder.append(' ');
stringBuilder.append('\t');
- node()->showNode(stringBuilder.toString().utf8().data());
+ WTFLogAlways("%s%s", stringBuilder.toString().utf8().data(), node()->toString().utf8().data());
} else {
WTFLogAlways("%s", stringBuilder.toString().utf8().data());
}

Powered by Google App Engine
This is Rietveld 408576698