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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp

Issue 2566403003: Migrate WTF::Vector::append() to ::push_back() [part 3 of N] (Closed)
Patch Set: Created 4 years 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/css/cssom/CSSTransformValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
index 65a7596806309ea9cdc280bc915a13206f6a8a2d..35679f9e3e70ee046a2b455495c20a4f31ed2d46 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
@@ -49,7 +49,7 @@ CSSTransformValue* CSSTransformValue::fromCSSValue(const CSSValue& cssValue) {
CSSTransformComponent::fromCSSValue(*value);
if (!component)
return nullptr;
- components.append(component);
+ components.push_back(component);
}
return CSSTransformValue::create(components);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleSheetContents.cpp ('k') | third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698