| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 2 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 8 <link rel="import" href="../icons.html"> | 8 <link rel="import" href="../icons.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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 <a href="/internet"> | 85 <a href="/internet"> |
| 86 <iron-icon icon="settings:network-wifi"></iron-icon> | 86 <iron-icon icon="settings:network-wifi"></iron-icon> |
| 87 $i18n{internetPageTitle} | 87 $i18n{internetPageTitle} |
| 88 </a> | 88 </a> |
| 89 <a href="/bluetooth"> | 89 <a href="/bluetooth"> |
| 90 <iron-icon icon="settings:bluetooth"></iron-icon> | 90 <iron-icon icon="settings:bluetooth"></iron-icon> |
| 91 $i18n{bluetoothPageTitle} | 91 $i18n{bluetoothPageTitle} |
| 92 </a> | 92 </a> |
| 93 </if> | 93 </if> |
| 94 <a id="people" href="/people" hidden="[[!pageVisibility.people]]"> | 94 <a id="people" href="/people" hidden="[[!pageVisibility.people]]"> |
| 95 <iron-icon icon="settings:people"></iron-icon> | 95 <iron-icon icon="cr:person"></iron-icon> |
| 96 $i18n{peoplePageTitle} | 96 $i18n{peoplePageTitle} |
| 97 </a> | 97 </a> |
| 98 <a href="/appearance" hidden="[[!pageVisibility.appearance]]"> | 98 <a href="/appearance" hidden="[[!pageVisibility.appearance]]"> |
| 99 <iron-icon icon="settings:palette"></iron-icon> | 99 <iron-icon icon="settings:palette"></iron-icon> |
| 100 $i18n{appearancePageTitle} | 100 $i18n{appearancePageTitle} |
| 101 </a> | 101 </a> |
| 102 <if expr="chromeos"> | 102 <if expr="chromeos"> |
| 103 <a href="/device"> | 103 <a href="/device"> |
| 104 <iron-icon icon="settings:laptop-chromebook"></iron-icon> | 104 <iron-icon icon="settings:laptop-chromebook"></iron-icon> |
| 105 $i18n{devicePageTitle} | 105 $i18n{devicePageTitle} |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 $i18n{resetPageTitle} | 177 $i18n{resetPageTitle} |
| 178 </a> | 178 </a> |
| 179 </iron-selector> | 179 </iron-selector> |
| 180 </iron-collapse> | 180 </iron-collapse> |
| 181 <div class="separator"></div> | 181 <div class="separator"></div> |
| 182 <a id="about-menu" href="/help">$i18n{aboutPageTitle}</a> | 182 <a id="about-menu" href="/help">$i18n{aboutPageTitle}</a> |
| 183 </iron-selector> | 183 </iron-selector> |
| 184 </template> | 184 </template> |
| 185 <script src="settings_menu.js"></script> | 185 <script src="settings_menu.js"></script> |
| 186 </dom-module> | 186 </dom-module> |
| OLD | NEW |