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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFEGaussianBlurElement.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/core/svg/SVGFEGaussianBlurElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFEGaussianBlurElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEGaussianBlurElement.cpp
index dc9d611070a4599fd380b1abd98149a334860c8b..eec9e731b98cde7d0aa790137bc4f42f1c0de4a9 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEGaussianBlurElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFEGaussianBlurElement.cpp
@@ -78,7 +78,7 @@ FilterEffect* SVGFEGaussianBlurElement::build(SVGFilterBuilder* filterBuilder,
float stdDevX = std::max(0.0f, stdDeviationX()->currentValue()->value());
float stdDevY = std::max(0.0f, stdDeviationY()->currentValue()->value());
FilterEffect* effect = FEGaussianBlur::create(filter, stdDevX, stdDevY);
- effect->inputEffects().append(input1);
+ effect->inputEffects().push_back(input1);
return effect;
}

Powered by Google App Engine
This is Rietveld 408576698