| Index: third_party/closure_compiler/externs/users_private.js
|
| diff --git a/third_party/closure_compiler/externs/users_private.js b/third_party/closure_compiler/externs/users_private.js
|
| index 733ac6e3b2d0e5357450a5652b8ab02cb9d65135..aef2b1a8fa9685eb59479015d7cff13e8398e862 100644
|
| --- a/third_party/closure_compiler/externs/users_private.js
|
| +++ b/third_party/closure_compiler/externs/users_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.usersPrivate.FooType'.
|
| +// Please run the closure compiler before committing changes.
|
| +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md
|
| +
|
| /** @fileoverview Externs generated from namespace: usersPrivate */
|
|
|
| /**
|
| @@ -12,15 +19,16 @@ chrome.usersPrivate = {};
|
| /**
|
| * @typedef {{
|
| * email: string,
|
| + * name: string,
|
| * isOwner: boolean
|
| * }}
|
| * @see https://developer.chrome.com/extensions/usersPrivate#type-User
|
| */
|
| -var User;
|
| +chrome.usersPrivate.User;
|
|
|
| /**
|
| * Gets a list of the currently whitelisted users.
|
| - * @param {function(!Array<User>):void} callback
|
| + * @param {function(!Array<!chrome.usersPrivate.User>):void} callback
|
| * @see https://developer.chrome.com/extensions/usersPrivate#method-getWhitelistedUsers
|
| */
|
| chrome.usersPrivate.getWhitelistedUsers = function(callback) {};
|
|
|