Chromium Code Reviews| Index: Source/core/page/UseCounter.cpp |
| diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp |
| index 7737be9df79c204a9bf22309cb488b98da1f89b0..354c4cde41c0c253b025a5a7e8b1b11c85100955 100644 |
| --- a/Source/core/page/UseCounter.cpp |
| +++ b/Source/core/page/UseCounter.cpp |
| @@ -485,6 +485,15 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| case CSSPropertyTouchAction: return 421; |
| case CSSPropertyGridArea: return 422; |
| case CSSPropertyGridTemplate: return 423; |
| + case CSSPropertyAnimation: return 424; |
| + case CSSPropertyAnimationDelay: return 425; |
| + case CSSPropertyAnimationDirection: return 426; |
| + case CSSPropertyAnimationDuration: return 427; |
| + case CSSPropertyAnimationFillMode: return 428; |
| + case CSSPropertyAnimationIterationCount: return 429; |
| + case CSSPropertyAnimationName: return 430; |
| + case CSSPropertyAnimationPlayState: return 431; |
| + case CSSPropertyAnimationTimingFunction: return 432; |
|
eseidel
2013/08/13 17:49:15
This isn't error prone at all. :p
darktears
2013/08/13 18:08:54
:D
|
| // Add new features above this line (don't change the assigned numbers of the existing |
| // items) and update maximumCSSSampleId() with the new maximum value. |
| @@ -499,7 +508,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id) |
| return 0; |
| } |
| -static int maximumCSSSampleId() { return 423; } |
| +static int maximumCSSSampleId() { return 432; } |
| UseCounter::UseCounter() |
| { |