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

Side by Side Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2852423002: Expose passwords to JavaScript in Credential Manager API (Closed)
Patch Set: More Interface Listings Created 3 years, 7 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 unified diff | Download patch
OLDNEW
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
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 // TODO(jdoerrie): Create separate Chrome Platform Status entry.
418 case UseCounter::kCredentialManagerIdName:
419 return willBeRemoved("PasswordCredential.idName", M62,
420 "5026422640869376");
421
422 // TODO(jdoerrie): Create separate Chrome Platform Status entry.
423 case UseCounter::kCredentialManagerPasswordName:
424 return willBeRemoved("PasswordCredential.passwordName", M62,
425 "5026422640869376");
426
427 // TODO(jdoerrie): Create separate Chrome Platform Status entry.
428 case UseCounter::kCredentialManagerAdditionalData:
429 return willBeRemoved("PasswordCredential.additionalData", M62,
430 "5026422640869376");
431
432 // TODO(jdoerrie): Create separate Chrome Platform Status entry.
433 case UseCounter::kCredentialManagerCustomFetch:
434 return willBeRemoved("fetch.RequestInit.RequestCredentials.password", M62,
Mike West 2017/05/04 11:13:33 We'll want a friendlier deprecation message than t
jdoerrie 2017/05/04 14:24:10 Acknowledged.
435 "5026422640869376");
436
417 // Features that aren't deprecated don't have a deprecation message. 437 // Features that aren't deprecated don't have a deprecation message.
418 default: 438 default:
419 return String(); 439 return String();
420 } 440 }
421 } 441 }
422 442
423 } // namespace blink 443 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698