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

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

Issue 2408203004: Punt touch UGI deprecation to M56 (Closed)
Patch Set: Created 4 years, 2 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 | « third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 56031896b452222e7cf62dfd23fc6f739737bdc1..faa5ddd688f1def781ca109030f3cca86b5fca91 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -15,7 +15,6 @@
namespace {
enum Milestone {
- M55,
M56,
M57,
M58,
@@ -27,8 +26,6 @@ const char* milestoneString(Milestone milestone) {
// https://www.chromium.org/developers/calendar
switch (milestone) {
- case M55:
- return "M55, around December 2016";
case M56:
return "M56, around January 2017";
case M57:
@@ -417,19 +414,19 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
return willBeRemoved(
"Performing operations that require explicit user interaction on "
"touchstart events",
- M55, "5649871251963904");
+ M56, "5649871251963904");
case UseCounter::TouchMoveUserGestureUtilized:
return willBeRemoved(
"Performing operations that require explicit user interaction on "
"touchmove events",
- M55, "5649871251963904");
+ M56, "5649871251963904");
case UseCounter::TouchEndDuringScrollUserGestureUtilized:
return willBeRemoved(
"Performing operations that require explicit user interaction on "
"touchend events that occur as part of a scroll",
- M55, "5649871251963904");
+ M56, "5649871251963904");
case UseCounter::MIDIMessageEventReceivedTime:
return willBeRemoved("MIDIMessageEvent.receivedTime", M56,
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698