Chromium Code Reviews| 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, |