summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/people_page/account_manager.js
blob: b3d4c9b82ded890ff3e1ba62369302d516366e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2018 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.

/**
 * @fileoverview
 * 'settings-account-manager' is the settings subpage containing controls to
 * list, add and delete Secondary Google Accounts.
 */

/**
 * Information for an account managed by Chrome OS AccountManager.
 * @typedef {{
 *   fullName: string,
 *   email: string,
 *   pic: string,
 * }}
 */
let Account;

Polymer({
  is: 'settings-account-manager',

  behaviors: [
    I18nBehavior,
  ],

  properties: {
    /**
     * List of Accounts.
     * @type {!Array<Account>}
     */
    accounts_: {
      type: Array,
      value: function() {
        return [];
      },
    },
  },

  /** @override */
  ready: function() {
    cr.sendWithPromise('getAccounts').then(accounts => {
      this.set('accounts_', accounts);
    });
  },

  /**
   * @param {string} iconUrl
   * @return {string} A CSS image-set for multiple scale factors.
   * @private */
  getIconImageSet_: function(iconUrl) {
    return cr.icon.getImage(iconUrl);
  },
});