| Index: third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebHistoryItem.cpp b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| index 08fafabb19576981b886782a93a9ac8e7c8b5fad..689741728f813c7b54d0b2d84bda78ab97d7a642 100644
|
| --- a/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| +++ b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| @@ -121,7 +121,7 @@ void WebHistoryItem::setDocumentState(const WebVector<WebString>& state) {
|
| // FIXME: would be nice to avoid the intermediate copy
|
| Vector<String> ds;
|
| for (size_t i = 0; i < state.size(); ++i)
|
| - ds.append(state[i]);
|
| + ds.push_back(state[i]);
|
| m_private->setDocumentState(ds);
|
| }
|
|
|
|
|