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

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

Issue 2246293003: Unprefix CSS user-select property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 4 years, 4 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
Index: third_party/WebKit/Source/core/frame/UseCounter.cpp
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.cpp b/third_party/WebKit/Source/core/frame/UseCounter.cpp
index dba648fbe12c827868e5e5424ecf572cb98b9fe0..0ce8ee4baed1ab2fae4fe0e8b4e3e6f3ffd72314 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -364,7 +364,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyAliasWebkitTransitionTimingFunction: return 336;
case CSSPropertyWebkitUserDrag: return 337;
case CSSPropertyWebkitUserModify: return 338;
- case CSSPropertyWebkitUserSelect: return 339;
+ case CSSPropertyAliasWebkitUserSelect: return 339;
// case CSSPropertyWebkitFlowInto: return 340;
// case CSSPropertyWebkitFlowFrom: return 341;
// case CSSPropertyWebkitRegionFragment: return 342;
@@ -565,7 +565,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
case CSSPropertyTextSizeAdjust: return 536;
case CSSPropertyAliasWebkitTextSizeAdjust: return 537;
case CSSPropertyOverflowAnchor: return 538;
-
+ case CSSPropertyUserSelect: return 539;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
// 2. Update maximumCSSSampleId() with the new maximum value.
@@ -582,7 +582,7 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
}
// Make sure update_use_counter_css.py was run which updates histograms.xml.
-static int maximumCSSSampleId() { return 538; }
+static int maximumCSSSampleId() { return 539; }
static EnumerationHistogram& featureObserverHistogram()
{

Powered by Google App Engine
This is Rietveld 408576698