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

Unified Diff: Source/core/css/StyleRuleKeyframe.cpp

Issue 989173003: Fix template angle bracket syntax in css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/css/StyleRuleKeyframe.h ('k') | Source/core/css/StyleSheetContents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/StyleRuleKeyframe.cpp
diff --git a/Source/core/css/StyleRuleKeyframe.cpp b/Source/core/css/StyleRuleKeyframe.cpp
index 307ec37390de867ebb2f36407668aa3b057ada63..19c99630ea8d6e8ebdac24669a572ca0d27b034a 100644
--- a/Source/core/css/StyleRuleKeyframe.cpp
+++ b/Source/core/css/StyleRuleKeyframe.cpp
@@ -35,7 +35,7 @@ bool StyleRuleKeyframe::setKeyText(const String& keyText)
{
ASSERT(!keyText.isNull());
- OwnPtr<Vector<double> > keys = CSSParser::parseKeyframeKeyList(keyText);
+ OwnPtr<Vector<double>> keys = CSSParser::parseKeyframeKeyList(keyText);
if (!keys || keys->isEmpty())
return false;
@@ -48,7 +48,7 @@ const Vector<double>& StyleRuleKeyframe::keys() const
return m_keys;
}
-void StyleRuleKeyframe::setKeys(PassOwnPtr<Vector<double> > keys)
+void StyleRuleKeyframe::setKeys(PassOwnPtr<Vector<double>> keys)
{
ASSERT(keys && !keys->isEmpty());
m_keys = *keys;
@@ -80,10 +80,10 @@ String StyleRuleKeyframe::cssText() const
return result.toString();
}
-PassOwnPtr<Vector<double> > StyleRuleKeyframe::createKeyList(CSSParserValueList* keys)
+PassOwnPtr<Vector<double>> StyleRuleKeyframe::createKeyList(CSSParserValueList* keys)
{
size_t numKeys = keys ? keys->size() : 0;
- OwnPtr<Vector<double> > keyVector = adoptPtr(new Vector<double>(numKeys));
+ OwnPtr<Vector<double>> keyVector = adoptPtr(new Vector<double>(numKeys));
for (size_t i = 0; i < numKeys; ++i) {
ASSERT(keys->valueAt(i)->unit == blink::CSSPrimitiveValue::CSS_NUMBER);
double key = keys->valueAt(i)->fValue;
« no previous file with comments | « Source/core/css/StyleRuleKeyframe.h ('k') | Source/core/css/StyleSheetContents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698