| OLD | NEW |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_selec
t.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_selec
t.html"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 on-tap="onWelcomeNextButtonClicked_"> | 31 on-tap="onWelcomeNextButtonClicked_"> |
| 32 </oobe-next-button> | 32 </oobe-next-button> |
| 33 </div> | 33 </div> |
| 34 <div class="flex horizontal layout justified"> | 34 <div class="flex horizontal layout justified"> |
| 35 <div class="buttonbox layout vertical" | 35 <div class="buttonbox layout vertical" |
| 36 on-tap="onWelcomeSelectLanguageButtonClicked_"> | 36 on-tap="onWelcomeSelectLanguageButtonClicked_"> |
| 37 <iron-icon icon="icons:language" class="bottom-button self-center"> | 37 <iron-icon icon="icons:language" class="bottom-button self-center"> |
| 38 </iron-icon> | 38 </iron-icon> |
| 39 <div id="currentLanguage">[[currentLanguage]]</div> | 39 <div id="currentLanguage">[[currentLanguage]]</div> |
| 40 </div> | 40 </div> |
| 41 <div class="buttonbox layout vertical"> | 41 <div class="buttonbox layout vertical" |
| 42 on-tap="onWelcomeAccessibilityButtonClicked_"> |
| 42 <iron-icon icon="icons:accessibility" | 43 <iron-icon icon="icons:accessibility" |
| 43 class="bottom-button self-center"> | 44 class="bottom-button self-center"> |
| 44 </iron-icon> | 45 </iron-icon> |
| 45 <div id="accessibilityLabel" i18n-content="accessibilityLink"></div> | 46 <div id="accessibilityLabel" i18n-content="accessibilityLink"></div> |
| 46 </div> | 47 </div> |
| 47 </div> | 48 </div> |
| 48 </div> | 49 </div> |
| 49 </oobe-card> | 50 </oobe-card> |
| 50 <oobe-dialog class="fit" hidden="[[!languageSelectionScreenShown]]" | 51 <oobe-dialog class="fit" hidden="[[!languageSelectionScreenShown]]" |
| 51 has-buttons> | 52 has-buttons> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 76 </oobe-i18n-dropdown> | 77 </oobe-i18n-dropdown> |
| 77 </div> | 78 </div> |
| 78 </template> | 79 </template> |
| 79 </div> | 80 </div> |
| 80 <div class="bottom-buttons layout horizontal"> | 81 <div class="bottom-buttons layout horizontal"> |
| 81 <oobe-text-button inverse on-tap="closeLanguageSection_" | 82 <oobe-text-button inverse on-tap="closeLanguageSection_" |
| 82 i18n-content="oobeOKButtonText"> | 83 i18n-content="oobeOKButtonText"> |
| 83 </oobe-text-button> | 84 </oobe-text-button> |
| 84 </div> | 85 </div> |
| 85 </oobe-dialog> | 86 </oobe-dialog> |
| 87 <oobe-dialog class="fit" hidden="[[!accessibilityOptionsScreenShown]]" |
| 88 has-buttons> |
| 89 <iron-icon icon="icons:accessibility" class="oobe-icon"></iron-icon> |
| 90 <div class="header flex layout vertical end-justified start"> |
| 91 <h1 class="welcome-message" i18n-content="accessibilitySectionTitle"> |
| 92 </h1> |
| 93 <h1 class="welcome-message-hint" |
| 94 i18n-content="accessibilitySectionHint"> |
| 95 </h1> |
| 96 </div> |
| 97 <div class="footer layout vertical"> |
| 98 <oobe-a11y-option checked="[[a11yStatus.spokenFeedbackEnabled]]" |
| 99 on-change="onA11yOptionChanged_" |
| 100 chrome-message="enableSpokenFeedback"> |
| 101 <span class="title" i18n-content="spokenFeedbackOption"></span> |
| 102 <span class="checked-value" i18n-content="spokenFeedbackOptionOn"> |
| 103 </span> |
| 104 <span class="unchecked-value" i18n-content="spokenFeedbackOptionOff"> |
| 105 </span> |
| 106 </oobe-a11y-option> |
| 107 <oobe-a11y-option checked="[[a11yStatus.largeCursorEnabled]]" |
| 108 on-change="onA11yOptionChanged_" |
| 109 chrome-message="enableLargeCursor"> |
| 110 <span class="title" i18n-content="largeCursorOption"></span> |
| 111 <span class="checked-value" i18n-content="largeCursorOptionOn"> |
| 112 </span> |
| 113 <span class="unchecked-value" i18n-content="largeCursorOptionOff"> |
| 114 </span> |
| 115 </oobe-a11y-option> |
| 116 <oobe-a11y-option checked="[[a11yStatus.highContrastEnabled]]" |
| 117 on-change="onA11yOptionChanged_" |
| 118 chrome-message="enableHighContrast"> |
| 119 <span class="title" i18n-content="highContrastOption"></span> |
| 120 <span class="checked-value" i18n-content="highContrastOptionOn"> |
| 121 </span> |
| 122 <span class="unchecked-value" i18n-content="highContrastOptionOff"> |
| 123 </span> |
| 124 </oobe-a11y-option> |
| 125 <oobe-a11y-option checked="[[a11yStatus.screenMagnifierEnabled]]" |
| 126 on-change="onA11yOptionChanged_" |
| 127 chrome-message="enableScreenMagnifier"> |
| 128 <span class="title" i18n-content="screenMagnifierOption"></span> |
| 129 <span class="checked-value" i18n-content="screenMagnifierOptionOn"> |
| 130 </span> |
| 131 <span class="unchecked-value" i18n-content="screenMagnifierOptionOff"> |
| 132 </span> |
| 133 </oobe-a11y-option> |
| 134 <oobe-a11y-option checked="[[a11yStatus.virtualKeyboardEnabled]]" |
| 135 on-change="onA11yOptionChanged_" |
| 136 chrome-message="enableVirtualKeyboard"> |
| 137 <span class="title" i18n-content="virtualKeyboardOption"></span> |
| 138 <span class="checked-value" i18n-content="virtualKeyboardOptionOn"> |
| 139 </span> |
| 140 <span class="unchecked-value" i18n-content="virtualKeyboardOptionOff"> |
| 141 </span> |
| 142 </oobe-a11y-option> |
| 143 </div> |
| 144 <div class="bottom-buttons layout horizontal"> |
| 145 <oobe-text-button inverse on-tap="closeAccessibilitySection_" |
| 146 i18n-content="oobeOKButtonText"> |
| 147 </oobe-text-button> |
| 148 </div> |
| 149 </oobe-dialog> |
| 86 <oobe-dialog id="networkSection" class="fit" | 150 <oobe-dialog id="networkSection" class="fit" |
| 87 hidden="[[!networkSelectionScreenShown]]"> | 151 hidden="[[!networkSelectionScreenShown]]"> |
| 88 <iron-icon icon="oobe-welcome:wifi" class="oobe-icon"></iron-icon> | 152 <iron-icon icon="oobe-welcome:wifi" class="oobe-icon"></iron-icon> |
| 89 <div class="header flex layout vertical end-justified start"> | 153 <div class="header flex layout vertical end-justified start"> |
| 90 <h1 class="welcome-message" i18n-content="networkSectionTitle"></h1> | 154 <h1 class="welcome-message" i18n-content="networkSectionTitle"></h1> |
| 91 <h1 class="welcome-message-hint" i18n-content="networkSectionHint"></h1> | 155 <h1 class="welcome-message-hint" i18n-content="networkSectionHint"></h1> |
| 92 </div> | 156 </div> |
| 93 <div class="footer flex layout vertical justified"> | 157 <div class="footer flex layout vertical justified"> |
| 94 <cr-network-select id="networkSelect" | 158 <cr-network-select id="networkSelect" |
| 95 on-network-connected="onNetworkConnected_" | 159 on-network-connected="onNetworkConnected_" |
| 96 on-network-item-selected="onNetworkListNetworkItemSelected_" | 160 on-network-item-selected="onNetworkListNetworkItemSelected_" |
| 97 on-custom-item-selected="onNetworkListCustomItemSelected_" | 161 on-custom-item-selected="onNetworkListCustomItemSelected_" |
| 98 custom-items="[[_getNetworkCustomItems()]]" | 162 custom-items="[[_getNetworkCustomItems()]]" |
| 99 max-height="280"> | 163 max-height="280"> |
| 100 </cr-network-select> | 164 </cr-network-select> |
| 101 </div> | 165 </div> |
| 102 </oobe-dialog> | 166 </oobe-dialog> |
| 103 </template> | 167 </template> |
| 104 </dom-module> | 168 </dom-module> |
| 105 | 169 |
| OLD | NEW |