| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/frame/Deprecation.h" | 5 #include "core/frame/Deprecation.h" |
| 6 | 6 |
| 7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
| 8 #include "core/dom/ExecutionContext.h" | 8 #include "core/dom/ExecutionContext.h" |
| 9 #include "core/frame/FrameConsole.h" | 9 #include "core/frame/FrameConsole.h" |
| 10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 "\"mastercard\", \"mir\", \"unionpay\", \"visa\") as payment method", | 433 "\"mastercard\", \"mir\", \"unionpay\", \"visa\") as payment method", |
| 434 "payment method name \"basic-card\" with issuer network in the " | 434 "payment method name \"basic-card\" with issuer network in the " |
| 435 "\"supportedNetworks\" field", | 435 "\"supportedNetworks\" field", |
| 436 M64, "5725727580225536"); | 436 M64, "5725727580225536"); |
| 437 case WebFeature::kCredentialManagerRequireUserMediation: | 437 case WebFeature::kCredentialManagerRequireUserMediation: |
| 438 return replacedWillBeRemoved( | 438 return replacedWillBeRemoved( |
| 439 "The CredentialsContainer.requireUserMediation method", | 439 "The CredentialsContainer.requireUserMediation method", |
| 440 "the CredentialsContainer.preventSilentAccess method", M62, | 440 "the CredentialsContainer.preventSilentAccess method", M62, |
| 441 "4781762488041472"); | 441 "4781762488041472"); |
| 442 | 442 |
| 443 case WebFeature::kDeprecatedTimingFunctionStepMiddle: |
| 444 return replacedWillBeRemoved( |
| 445 "The step timing function with step position 'middle'", |
| 446 "the frames timing function", M62, "5189363944128512"); |
| 447 |
| 443 // Features that aren't deprecated don't have a deprecation message. | 448 // Features that aren't deprecated don't have a deprecation message. |
| 444 default: | 449 default: |
| 445 return String(); | 450 return String(); |
| 446 } | 451 } |
| 447 } | 452 } |
| 448 | 453 |
| 449 } // namespace blink | 454 } // namespace blink |
| OLD | NEW |