OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 | 2 |
3 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> |
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
8 <link rel="import" href="../i18n_setup.html"> | 8 <link rel="import" href="../i18n_setup.html"> |
9 <link rel="import" href="manage_profile_browser_proxy.html"> | 9 <link rel="import" href="manage_profile_browser_proxy.html"> |
10 <link rel="import" href="../route.html"> | 10 <link rel="import" href="../route.html"> |
(...skipping 17 matching lines...) Expand all Loading... |
28 <div class="settings-box first"> | 28 <div class="settings-box first"> |
29 <div id="showShortcutLabel" class="start">$i18n{showShortcutLabel}</div> | 29 <div id="showShortcutLabel" class="start">$i18n{showShortcutLabel}</div> |
30 <paper-toggle-button id="hasShortcutToggle" | 30 <paper-toggle-button id="hasShortcutToggle" |
31 checked="{{hasProfileShortcut_}}" | 31 checked="{{hasProfileShortcut_}}" |
32 on-change="onHasProfileShortcutChange_" | 32 on-change="onHasProfileShortcutChange_" |
33 aria-labelledby="showShortcutLabel"> | 33 aria-labelledby="showShortcutLabel"> |
34 </paper-toggle-button> | 34 </paper-toggle-button> |
35 </div> | 35 </div> |
36 </template> | 36 </template> |
37 <cr-profile-avatar-selector id="selector" avatars="[[availableIcons]]" | 37 <cr-profile-avatar-selector id="selector" avatars="[[availableIcons]]" |
38 selected-avatar-url="{{profileIconUrl}}" | 38 selected-avatar="{{profileAvatar_}}" ignore-modified-key-events> |
39 on-iron-activate="onIconActivate_" ignore-modified-key-events> | |
40 </cr-profile-avatar-selector> | 39 </cr-profile-avatar-selector> |
41 </template> | 40 </template> |
42 <script src="manage_profile.js"></script> | 41 <script src="manage_profile.js"></script> |
43 </dom-module> | 42 </dom-module> |
OLD | NEW |