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

Side by Side Diff: Source/modules/credentialmanager/PasswordCredential.idl

Issue 1162443006: Credential Management: Rename 'LocalCredential' to 'PasswordCredential' (1/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add-type
Patch Set: Created 5 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 [ 5 [
6 RuntimeEnabled=CredentialManager, 6 RuntimeEnabled=CredentialManager,
7 RaisesException=Constructor, 7 RaisesException=Constructor,
8 Constructor(DOMString id, DOMString password, optional DOMString name, optio nal DOMString avatarURL) 8 Constructor(DOMString id, DOMString password, optional DOMString name, optio nal DOMString avatarURL)
9 ] interface LocalCredential : Credential { 9 ] interface PasswordCredential : Credential {
vabr (Chromium) 2015/06/01 09:10:13 Just to double-check -- as you pointed out in the
Mike West 2015/06/01 09:12:03 That will be done in patch #17. It will introduce
10 readonly attribute DOMString password; 10 readonly attribute DOMString password;
11 readonly attribute FormData formData; 11 readonly attribute FormData formData;
12 }; 12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698