| Index: third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp b/third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp
|
| index e2327cdc756bf0f08ee39591bb79bfbf0ed7b728..b76edf02f06363df0c143c03498c027970566c5e 100644
|
| --- a/third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp
|
| @@ -42,7 +42,7 @@ static Vector<TextCheckingResult> toCoreResults(
|
| const WebVector<WebTextCheckingResult>& results) {
|
| Vector<TextCheckingResult> coreResults;
|
| for (size_t i = 0; i < results.size(); ++i)
|
| - coreResults.append(results[i]);
|
| + coreResults.push_back(results[i]);
|
| return coreResults;
|
| }
|
|
|
|
|