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

Unified Diff: third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: 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/modules/crypto/NormalizeAlgorithm.cpp
diff --git a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
index bd78362526e09db42ac3695d5604a8111c286217..e9188990987231f75120563b9cf554f5b6de7791 100644
--- a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
+++ b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp
@@ -217,7 +217,7 @@ void setNotSupportedError(const String& message, AlgorithmError* error) {
// tell what went wrong from a failure alone.
class ErrorContext {
public:
- void add(const char* message) { m_messages.append(message); }
+ void add(const char* message) { m_messages.push_back(message); }
void removeLast() { m_messages.pop_back(); }

Powered by Google App Engine
This is Rietveld 408576698