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

Unified Diff: third_party/WebKit/Source/platform/graphics/LoggingCanvas.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
Index: third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp b/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
index 8de896ce6e92e13e6ad02758a6ef3886c4e5a1a6..137e1847aff52a24a1f66b83a0d73877c09073cc 100644
--- a/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
+++ b/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
@@ -326,7 +326,7 @@ String stringForSkColor(const SkColor& color) {
// #AARRGGBB.
Vector<LChar, 9> result;
result.push_back('#');
- appendUnsignedAsHex(color, result);
+ HexNumber::appendUnsignedAsHex(color, result);
return String(result.data(), result.size());
}
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/Color.cpp ('k') | third_party/WebKit/Source/platform/network/FormDataEncoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698