| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.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-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="display_layout.html"> | 9 <link rel="import" href="display_layout.html"> |
| 10 <link rel="import" href="display_overscan_dialog.html"> | 10 <link rel="import" href="display_overscan_dialog.html"> |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 </settings-slider> | 147 </settings-slider> |
| 148 </div> | 148 </div> |
| 149 | 149 |
| 150 <template is="dom-if" if="[[!unifiedDesktopMode_]]" restamp> | 150 <template is="dom-if" if="[[!unifiedDesktopMode_]]" restamp> |
| 151 <div class="settings-box embedded"> | 151 <div class="settings-box embedded"> |
| 152 <div id="displayOrientation" class="start textarea"> | 152 <div id="displayOrientation" class="start textarea"> |
| 153 $i18n{displayOrientation} | 153 $i18n{displayOrientation} |
| 154 </div> | 154 </div> |
| 155 <div class="md-select-wrapper"> | 155 <div class="md-select-wrapper"> |
| 156 <select class="md-select" value="[[selectedDisplay.rotation]]" | 156 <select class="md-select" value="[[selectedDisplay.rotation]]" |
| 157 disabled="[[!enableOrientation_(selectedDisplay)]]" |
| 157 aria-labelledby="displayOrientation" | 158 aria-labelledby="displayOrientation" |
| 158 on-change="onOrientationChange_"> | 159 on-change="onOrientationChange_"> |
| 159 <option value="0">$i18n{displayOrientationStandard}</option> | 160 <option value="0">$i18n{displayOrientationStandard}</option> |
| 160 <option value="90">90</option> | 161 <option value="90">90</option> |
| 161 <option value="180">180</option> | 162 <option value="180">180</option> |
| 162 <option value="270">270</option> | 163 <option value="270">270</option> |
| 163 </select> | 164 </select> |
| 164 <span class="md-select-underline"></span> | 165 <span class="md-select-underline"></span> |
| 165 </div> | 166 </div> |
| 166 </div> | 167 </div> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 196 </div> | 197 </div> |
| 197 </div> | 198 </div> |
| 198 <button class="subpage-arrow" is="paper-icon-button-light" | 199 <button class="subpage-arrow" is="paper-icon-button-light" |
| 199 aria-label="$i18n{displayTouchCalibrationTitle}" | 200 aria-label="$i18n{displayTouchCalibrationTitle}" |
| 200 aria-describedby="touchCalibrationSecondary"></button> | 201 aria-describedby="touchCalibrationSecondary"></button> |
| 201 </div> | 202 </div> |
| 202 </div> | 203 </div> |
| 203 </template> | 204 </template> |
| 204 <script src="display.js"></script> | 205 <script src="display.js"></script> |
| 205 </dom-module> | 206 </dom-module> |
| OLD | NEW |