| Index: third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp b/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| index 8044c7f8b83101124fc07e65861fe2f281fd770c..d66c171c645b2f1a94c4279cb684f42691bcc644 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| @@ -89,14 +89,14 @@ bool isGoodForScoring(const WebDistillabilityFeatures& features,
|
| "share", "shoutbox", "sidebar", "skyscraper", "sponsor", "ad-break",
|
| "agegate", "pagination", "pager", "popup"};
|
| for (auto word : words) {
|
| - unlikelyCandidates.append(word);
|
| + unlikelyCandidates.push_back(word);
|
| }
|
| }
|
| DEFINE_STATIC_LOCAL(Vector<String>, highlyLikelyCandidates, ());
|
| if (highlyLikelyCandidates.isEmpty()) {
|
| auto words = {"and", "article", "body", "column", "main", "shadow"};
|
| for (auto word : words) {
|
| - highlyLikelyCandidates.append(word);
|
| + highlyLikelyCandidates.push_back(word);
|
| }
|
| }
|
|
|
|
|