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

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

Issue 2422673002: Punt touch UGI and doppler deprecations to M56 (Closed)
Patch Set: Instead update the dopler warning to M56 too 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/webaudio/doppler-deprecated-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 efdc481dfc8899178b3e40a6bd80de5f78e87b46..514d0047ac5d139902cb5d8f04a2ac9fea8a09f6 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:
@@ -294,19 +291,19 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
"https://code.google.com/p/chromium/issues/detail?id=437569#c2";
case UseCounter::AudioListenerDopplerFactor:
- return dopplerWillBeRemoved("'AudioListener.dopplerFactor'", M55,
+ return dopplerWillBeRemoved("'AudioListener.dopplerFactor'", M56,
"5238926818148352");
case UseCounter::AudioListenerSpeedOfSound:
- return dopplerWillBeRemoved("'AudioListener.speedOfSound'", M55,
+ return dopplerWillBeRemoved("'AudioListener.speedOfSound'", M56,
"5238926818148352");
case UseCounter::AudioListenerSetVelocity:
- return dopplerWillBeRemoved("'AudioListener.setVelocity()'", M55,
+ return dopplerWillBeRemoved("'AudioListener.setVelocity()'", M56,
"5238926818148352");
case UseCounter::PannerNodeSetVelocity:
- return dopplerWillBeRemoved("'PannerNode.setVelocity()'", M55,
+ return dopplerWillBeRemoved("'PannerNode.setVelocity()'", M56,
"5238926818148352");
case UseCounter::PrefixedWindowURL:
@@ -443,19 +440,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/webaudio/doppler-deprecated-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698