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

Unified Diff: third_party/WebKit/Source/wtf/text/WTFString.cpp

Issue 2622363005: Migrate WTF::Vector::append() to ::push_back() in WTF::HexNumber (Closed)
Patch Set: remove template, rely on function overload resolution for Vector-specific methods 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
« no previous file with comments | « third_party/WebKit/Source/wtf/HexNumber.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/WTFString.cpp
diff --git a/third_party/WebKit/Source/wtf/text/WTFString.cpp b/third_party/WebKit/Source/wtf/text/WTFString.cpp
index 0cfe47326d65f40620f44f709acac7a528ad8d3e..bc751f5ab80128e614046bef1ae36b199875752b 100644
--- a/third_party/WebKit/Source/wtf/text/WTFString.cpp
+++ b/third_party/WebKit/Source/wtf/text/WTFString.cpp
@@ -58,7 +58,7 @@ Vector<char> asciiDebug(StringImpl* impl) {
} else {
buffer.push_back('\\');
buffer.push_back('u');
- appendUnsignedAsHexFixedSize(ch, buffer, 4);
+ HexNumber::appendUnsignedAsHexFixedSize(ch, buffer, 4);
}
}
buffer.push_back('\0');
« no previous file with comments | « third_party/WebKit/Source/wtf/HexNumber.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698