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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h

Issue 2554693003: Migrate WTF::Vector::append() to ::push_back() [part 1 of N] (Closed)
Patch Set: rebase Created 4 years 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/bindings/core/v8/ScriptValueSerializer.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
index c29ad4c6f257a10c79446ef6c4f3c456b15ae4a4..adcc8ac6413ef7fa8b0cb4a8d5994b53fc197c54 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h
@@ -656,7 +656,7 @@ class CORE_EXPORT ScriptValueDeserializer {
uint32_t numProperties,
v8::Local<v8::Value>*);
bool doDeserialize();
- void push(v8::Local<v8::Value> value) { m_stack.append(value); };
+ void push(v8::Local<v8::Value> value) { m_stack.push_back(value); };
void pop(unsigned length) {
ASSERT(length <= m_stack.size());
m_stack.shrink(m_stack.size() - length);

Powered by Google App Engine
This is Rietveld 408576698