| 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 5166ee99483f91d2e9ca69124357a7b046e1c3c2..e28c9536e8285ba58461dcd2aa8d2a72131262b6 100644
|
| --- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
|
| @@ -351,10 +351,12 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
|
| "details.";
|
|
|
| case UseCounter::EncryptedMediaInsecureOrigin:
|
| - return "requestMediaKeySystemAccess() is deprecated on insecure origins "
|
| - "in the specification. Support will be removed in the future. You "
|
| - "should consider switching your application to a secure origin, "
|
| - "such as HTTPS. See https://goo.gl/rStTGz for more details.";
|
| + return String::format(
|
| + "Using requestMediaKeySystemAccess() on insecure origins is "
|
| + "deprecated and will be removed in %s. You should consider "
|
| + "switching your application to a secure origin, such as HTTPS. See "
|
| + "https://goo.gl/rStTGz for more details.",
|
| + milestoneString(M58));
|
|
|
| case UseCounter::MediaSourceAbortRemove:
|
| return "Using SourceBuffer.abort() to abort remove()'s asynchronous "
|
|
|