| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 3 <link rel="import" href="chrome://resources/html/cr.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/cr_elements/policy/cr_policy_indicat
or.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 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="../controls/settings_dropdown_menu.html"> | 8 <link rel="import" href="../controls/settings_dropdown_menu.html"> |
| 8 <link rel="import" href="../controls/settings_toggle_button.html"> | 9 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 9 <link rel="import" href="../i18n_setup.html"> | 10 <link rel="import" href="../i18n_setup.html"> |
| 10 <link rel="import" href="../prefs/prefs_behavior.html"> | 11 <link rel="import" href="../prefs/prefs_behavior.html"> |
| 11 <link rel="import" href="../prefs/prefs_types.html"> | 12 <link rel="import" href="../prefs/prefs_types.html"> |
| 12 <link rel="import" href="../settings_shared_css.html"> | 13 <link rel="import" href="../settings_shared_css.html"> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 </div> | 63 </div> |
| 63 <div class="settings-box" id="setDateTime" actionable | 64 <div class="settings-box" id="setDateTime" actionable |
| 64 on-tap="onSetDateTimeTap_" hidden$="[[!canSetDateTime_]]"> | 65 on-tap="onSetDateTimeTap_" hidden$="[[!canSetDateTime_]]"> |
| 65 <div class="start">$i18n{setDateTime}</div> | 66 <div class="start">$i18n{setDateTime}</div> |
| 66 <button class="subpage-arrow" is="paper-icon-button-light" | 67 <button class="subpage-arrow" is="paper-icon-button-light" |
| 67 aria-label="$i18n{setDateTime}"></button> | 68 aria-label="$i18n{setDateTime}"></button> |
| 68 </div> | 69 </div> |
| 69 </template> | 70 </template> |
| 70 <script src="date_time_page.js"></script> | 71 <script src="date_time_page.js"></script> |
| 71 </dom-module> | 72 </dom-module> |
| OLD | NEW |