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 cda6ad11bc20e0bf62a9114dbf105bd207d03cbe..ce63ecd77707052c14e3985ad2be951268e43e6b 100644 |
--- a/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
+++ b/third_party/WebKit/Source/modules/crypto/NormalizeAlgorithm.cpp |
@@ -219,7 +219,7 @@ class ErrorContext { |
public: |
void add(const char* message) { m_messages.append(message); } |
- void removeLast() { m_messages.removeLast(); } |
+ void removeLast() { m_messages.pop_back(); } |
// Join all of the string literals into a single String. |
String toString() const { |