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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 milestoneString(M60)); | 407 milestoneString(M60)); |
408 | 408 |
409 case UseCounter::kV8RTCPeerConnection_GetStreamById_Method: | 409 case UseCounter::kV8RTCPeerConnection_GetStreamById_Method: |
410 return willBeRemoved("RTCPeerConnection.getStreamById()", M62, | 410 return willBeRemoved("RTCPeerConnection.getStreamById()", M62, |
411 "5751819573657600"); | 411 "5751819573657600"); |
412 | 412 |
413 case UseCounter::kV8SVGPathElement_GetPathSegAtLength_Method: | 413 case UseCounter::kV8SVGPathElement_GetPathSegAtLength_Method: |
414 return willBeRemoved("SVGPathElement.getPathSegAtLength", M62, | 414 return willBeRemoved("SVGPathElement.getPathSegAtLength", M62, |
415 "5638783282184192"); | 415 "5638783282184192"); |
416 | 416 |
| 417 case UseCounter::kCredentialManagerIdName: |
| 418 return willBeRemoved("PasswordCredential.idName", M62, |
| 419 "5689327799500800"); |
| 420 |
| 421 case UseCounter::kCredentialManagerPasswordName: |
| 422 return willBeRemoved("PasswordCredential.passwordName", M62, |
| 423 "5689327799500800"); |
| 424 |
| 425 case UseCounter::kCredentialManagerAdditionalData: |
| 426 return willBeRemoved("PasswordCredential.additionalData", M62, |
| 427 "5689327799500800"); |
| 428 |
| 429 case UseCounter::kCredentialManagerCustomFetch: |
| 430 return willBeRemoved("fetch.RequestInit.RequestCredentials.password", M62, |
| 431 "5689327799500800"); |
| 432 |
417 // Features that aren't deprecated don't have a deprecation message. | 433 // Features that aren't deprecated don't have a deprecation message. |
418 default: | 434 default: |
419 return String(); | 435 return String(); |
420 } | 436 } |
421 } | 437 } |
422 | 438 |
423 } // namespace blink | 439 } // namespace blink |
OLD | NEW |