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

Unified Diff: third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp

Issue 2612903007: Migrate WTF::Vector::append() to ::push_back() [part 15 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/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;
}
« no previous file with comments | « third_party/WebKit/Source/web/WebSearchableFormData.cpp ('k') | third_party/WebKit/Source/web/WebTextCheckingResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698