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

Unified Diff: third_party/closure_compiler/externs/passwords_private.js

Issue 1591053002: Add a password handler to get the list of passwords in md-settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit: inline function Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/webui/settings/settings_passwords_section_browsertest.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/passwords_private.js
diff --git a/third_party/closure_compiler/externs/passwords_private.js b/third_party/closure_compiler/externs/passwords_private.js
index f138031127555e4097fe0546cede2ed434e6d3c7..10e983b4df1f2d0f0805e4753f69ef00a29a722f 100644
--- a/third_party/closure_compiler/externs/passwords_private.js
+++ b/third_party/closure_compiler/externs/passwords_private.js
@@ -1,7 +1,14 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
+// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// This file was generated by:
+// tools/json_schema_compiler/compiler.py.
+// NOTE: The format of types has changed. 'FooType' is now
+// 'chrome.passwordsPrivate.FooType'.
+// Please run the closure compiler before committing changes.
+// See https://code.google.com/p/chromium/wiki/ClosureCompilation.
+
/** @fileoverview Externs generated from namespace: passwordsPrivate */
/**
@@ -16,32 +23,32 @@ chrome.passwordsPrivate = {};
* }}
* @see https://developer.chrome.com/extensions/passwordsPrivate#type-LoginPair
*/
-var LoginPair;
+chrome.passwordsPrivate.LoginPair;
/**
* @typedef {{
- * loginPair: LoginPair,
+ * loginPair: !chrome.passwordsPrivate.LoginPair,
* numCharactersInPassword: number,
* federationText: (string|undefined)
* }}
* @see https://developer.chrome.com/extensions/passwordsPrivate#type-PasswordUiEntry
*/
-var PasswordUiEntry;
+chrome.passwordsPrivate.PasswordUiEntry;
/**
* @typedef {{
- * loginPair: LoginPair,
+ * loginPair: !chrome.passwordsPrivate.LoginPair,
* plaintextPassword: string
* }}
* @see https://developer.chrome.com/extensions/passwordsPrivate#type-PlaintextPasswordEventParameters
*/
-var PlaintextPasswordEventParameters;
+chrome.passwordsPrivate.PlaintextPasswordEventParameters;
/**
* Removes the saved password corresponding to |loginPair|. If no saved password
* for this pair exists, this function is a no-op.
- * @param {LoginPair} loginPair The LoginPair corresponding to the entry to
- * remove.
+ * @param {!chrome.passwordsPrivate.LoginPair} loginPair The LoginPair
+ * corresponding to the entry to remove.
* @see https://developer.chrome.com/extensions/passwordsPrivate#method-removeSavedPassword
*/
chrome.passwordsPrivate.removeSavedPassword = function(loginPair) {};
@@ -60,8 +67,8 @@ chrome.passwordsPrivate.removePasswordException = function(exceptionUrl) {};
* some operating systems, this call may result in an OS-level reauthentication.
* Once the password has been fetched, it will be returned via the
* onPlaintextPasswordRetrieved event.
- * @param {LoginPair} loginPair The LoginPair corresponding to the entry whose
- * password is to be returned.
+ * @param {!chrome.passwordsPrivate.LoginPair} loginPair The LoginPair
+ * corresponding to the entry whose password is to be returned.
* @see https://developer.chrome.com/extensions/passwordsPrivate#method-requestPlaintextPassword
*/
chrome.passwordsPrivate.requestPlaintextPassword = function(loginPair) {};
« no previous file with comments | « chrome/test/data/webui/settings/settings_passwords_section_browsertest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698