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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp

Issue 2622363005: Migrate WTF::Vector::append() to ::push_back() in WTF::HexNumber (Closed)
Patch Set: switch HexNumber::appendUnsignedAsHexFixedSize to static function for less partial template special… Created 3 years, 11 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/LayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
index c23b5d933874f114da9a941f66aaaf08b39f85dc..f945e820fcfd1ffde0e0d47cb1f8ba18b336e358 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
@@ -145,7 +145,7 @@ String quoteAndEscapeNonPrintables(const String& s) {
result.append('\\');
result.append('x');
result.append('{');
- appendUnsignedAsHex(c, result);
+ HexNumber::appendUnsignedAsHex(c, result);
result.append('}');
}
}

Powered by Google App Engine
This is Rietveld 408576698