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

Unified Diff: third_party/WebKit/Source/web/WebTextCheckingResult.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/WebTextCheckingResult.cpp
diff --git a/third_party/WebKit/Source/web/WebTextCheckingResult.cpp b/third_party/WebKit/Source/web/WebTextCheckingResult.cpp
index 179faf3e30791639a78ec7b6bac73c16ae6aad30..630e2389c89db057d760bffa67bb1640b4abb7d6 100644
--- a/third_party/WebKit/Source/web/WebTextCheckingResult.cpp
+++ b/third_party/WebKit/Source/web/WebTextCheckingResult.cpp
@@ -46,7 +46,7 @@ WebTextCheckingResult::operator TextCheckingResult() const {
detail.location = 0;
detail.length = length;
detail.userDescription = replacement;
- result.details.append(detail);
+ result.details.push_back(detail);
}
return result;
« no previous file with comments | « third_party/WebKit/Source/web/WebTextCheckingCompletionImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698