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

Side by Side Diff: chrome/browser/resources/settings/people_page/manage_profile.html

Issue 2950943002: MD Settings: Stop using IronMenuBehavior from cr-profile-avatar-selector-grid. (Closed)
Patch Set: Added comment. Created 3 years, 6 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 unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698