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

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

Issue 2826123003: Pushing back rtcpMuxPolicy deprecation message to M62. (Closed)
Patch Set: Created 3 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 | « no previous file | 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 a4a8d431dbc5867f530803e689a0b5036a55a00b..8625045fa75aa86d9e80a65f63daf413f1c620a3 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -20,6 +20,8 @@ enum Milestone {
M58,
M59,
M60,
+ M61,
foolip 2017/04/20 09:53:50 If you rebase this should disappear, but if you're
Taylor_Brandstetter 2017/04/20 20:33:42 Acknowledged.
+ M62,
};
const char* milestoneString(Milestone milestone) {
@@ -37,6 +39,10 @@ const char* milestoneString(Milestone milestone) {
return "M59, around June 2017";
case M60:
return "M60, around August 2017";
+ case M61:
+ return "M61, around September 2017";
+ case M62:
+ return "M62, around October 2017";
}
ASSERT_NOT_REACHED();
@@ -416,7 +422,7 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
"removal and may be removed no earlier than %s. If you depend on it, "
"please see https://www.chromestatus.com/features/5654810086866944 "
"for more details.",
- milestoneString(M60));
+ milestoneString(M62));
case UseCounter::V8IDBFactory_WebkitGetDatabaseNames_Method:
return willBeRemoved("indexedDB.webkitGetDatabaseNames()", M60,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698