| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <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"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <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"> |
| 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-input/paper-input
.html"> |
| 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-styles/shadow.htm
l"> |
| 6 <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"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 8 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="manage_profile_browser_proxy.html"> | 9 <link rel="import" href="manage_profile_browser_proxy.html"> |
| 9 <link rel="import" href="../route.html"> | 10 <link rel="import" href="../route.html"> |
| 10 <link rel="import" href="../settings_shared_css.html"> | 11 <link rel="import" href="../settings_shared_css.html"> |
| 11 | 12 |
| 12 <dom-module id="settings-manage-profile"> | 13 <dom-module id="settings-manage-profile"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 33 </paper-toggle-button> | 34 </paper-toggle-button> |
| 34 </div> | 35 </div> |
| 35 </template> | 36 </template> |
| 36 <cr-profile-avatar-selector id="selector" avatars="[[availableIcons]]" | 37 <cr-profile-avatar-selector id="selector" avatars="[[availableIcons]]" |
| 37 selected-avatar-url="{{profileIconUrl}}" | 38 selected-avatar-url="{{profileIconUrl}}" |
| 38 on-iron-activate="onIconActivate_" ignore-modified-key-events> | 39 on-iron-activate="onIconActivate_" ignore-modified-key-events> |
| 39 </cr-profile-avatar-selector> | 40 </cr-profile-avatar-selector> |
| 40 </template> | 41 </template> |
| 41 <script src="manage_profile.js"></script> | 42 <script src="manage_profile.js"></script> |
| 42 </dom-module> | 43 </dom-module> |
| OLD | NEW |