| 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) {};
|
|
|