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

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

Issue 2259943003: Settings People CrOS: Display supervised users' names correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test variables Created 4 years, 4 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
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) {};

Powered by Google App Engine
This is Rietveld 408576698