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

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

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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/RemoteFontFaceSource.cpp ('k') | Source/core/editing/Editor.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 d59bde36bb45d191c543f01b53a2d88903a8192f..535964395974cbc9a58a40a52562e725e7a134d7 100644
--- a/Source/core/css/StyleRuleKeyframe.cpp
+++ b/Source/core/css/StyleRuleKeyframe.cpp
@@ -86,7 +86,7 @@ PassOwnPtr<Vector<double>> StyleRuleKeyframe::createKeyList(CSSParserValueList*
size_t numKeys = keys ? keys->size() : 0;
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);
+ ASSERT(keys->valueAt(i)->unit == CSSPrimitiveValue::CSS_NUMBER);
double key = keys->valueAt(i)->fValue;
if (key < 0 || key > 100) {
// As per http://www.w3.org/TR/css3-animations/#keyframes,
« no previous file with comments | « Source/core/css/RemoteFontFaceSource.cpp ('k') | Source/core/editing/Editor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698