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