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

Unified Diff: Source/core/frame/UseCounter.cpp

Issue 1099483002: Use alias_for with trivial property aliases (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@alias
Patch Set: rebase a couple of tests 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/resolver/StyleResolver.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index 1ec3a3a81452b84958f15a9a38b25d4de990f1a3..7048040b3d8130c1e2842be31064771cac00b3e0 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -217,7 +217,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyWebkitAnimationTimingFunction: return 174;
case CSSPropertyWebkitAppearance: return 175;
// CSSPropertyWebkitAspectRatio was 176
- case CSSPropertyWebkitBackfaceVisibility: return 177;
+ case CSSPropertyAliasWebkitBackfaceVisibility: return 177;
case CSSPropertyWebkitBackgroundClip: return 178;
case CSSPropertyWebkitBackgroundComposite: return 179;
case CSSPropertyWebkitBackgroundOrigin: return 180;
@@ -252,7 +252,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyWebkitBoxOrient: return 209;
case CSSPropertyWebkitBoxPack: return 210;
case CSSPropertyWebkitBoxReflect: return 211;
- case CSSPropertyWebkitBoxShadow: return 212;
+ case CSSPropertyAliasWebkitBoxShadow: return 212;
// CSSPropertyWebkitColumnAxis was 214
case CSSPropertyWebkitColumnBreakAfter: return 215;
case CSSPropertyWebkitColumnBreakBefore: return 216;
@@ -340,7 +340,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyWebkitPaddingEnd: return 306;
case CSSPropertyWebkitPaddingStart: return 307;
case CSSPropertyWebkitPerspective: return 308;
- case CSSPropertyWebkitPerspectiveOrigin: return 309;
+ case CSSPropertyAliasWebkitPerspectiveOrigin: return 309;
case CSSPropertyWebkitPerspectiveOriginX: return 310;
case CSSPropertyWebkitPerspectiveOriginY: return 311;
case CSSPropertyWebkitPrintColorAdjust: return 312;
@@ -358,11 +358,11 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyWebkitTextStrokeColor: return 324;
case CSSPropertyWebkitTextStrokeWidth: return 325;
case CSSPropertyWebkitTransform: return 326;
- case CSSPropertyWebkitTransformOrigin: return 327;
+ case CSSPropertyAliasWebkitTransformOrigin: return 327;
case CSSPropertyWebkitTransformOriginX: return 328;
case CSSPropertyWebkitTransformOriginY: return 329;
case CSSPropertyWebkitTransformOriginZ: return 330;
- case CSSPropertyWebkitTransformStyle: return 331;
+ case CSSPropertyAliasWebkitTransformStyle: return 331;
case CSSPropertyWebkitTransition: return 332;
case CSSPropertyWebkitTransitionDelay: return 333;
case CSSPropertyWebkitTransitionDuration: return 334;
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698