| 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/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 <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-icon/iron-icon.htm
l"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 </g> | 21 </g> |
| 22 </defs> | 22 </defs> |
| 23 </svg> | 23 </svg> |
| 24 </iron-iconset-svg> | 24 </iron-iconset-svg> |
| 25 | 25 |
| 26 <dom-module name="oobe-eula-md"> | 26 <dom-module name="oobe-eula-md"> |
| 27 <template> | 27 <template> |
| 28 <link rel="stylesheet" href="oobe_eula.css"> | 28 <link rel="stylesheet" href="oobe_eula.css"> |
| 29 <link rel="stylesheet" href="oobe_dialog_parameters.css"> | 29 <link rel="stylesheet" href="oobe_dialog_parameters.css"> |
| 30 <oobe-dialog id="eulaLoadingDialog" hidden="[[!eulaLoadingScreenShown]]" | 30 <oobe-dialog id="eulaLoadingDialog" hidden="[[!eulaLoadingScreenShown]]" |
| 31 role="dialog" aria-label="$i18n{termsOfServiceLoading}" | 31 role="dialog" aria-label$="$i18n{termsOfServiceLoading}" |
| 32 has-buttons> | 32 has-buttons> |
| 33 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> | 33 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> |
| 34 <div class="header"> | 34 <div class="header"> |
| 35 <h1 class="title" i18n-content="termsOfServiceLoading"></h1> | 35 <h1 class="title" i18n-content="termsOfServiceLoading"></h1> |
| 36 </div> | 36 </div> |
| 37 </oobe-dialog> | 37 </oobe-dialog> |
| 38 <oobe-dialog id="eulaDialog" hidden="[[eulaLoadingScreenShown]]" | 38 <oobe-dialog id="eulaDialog" hidden="[[eulaLoadingScreenShown]]" |
| 39 role="dialog" aria-label="$i18n{oobeEulaSectionTitle}" | 39 role="dialog" aria-label$="$i18n{oobeEulaSectionTitle}" |
| 40 has-buttons> | 40 has-buttons> |
| 41 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> | 41 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> |
| 42 <div class="header"> | 42 <div class="header"> |
| 43 <h1 class="title" i18n-content="oobeEulaSectionTitle"></h1> | 43 <h1 class="title" i18n-content="oobeEulaSectionTitle"></h1> |
| 44 </div> | 44 </div> |
| 45 <div class="footer flex layout vertical"> | 45 <div class="footer flex layout vertical"> |
| 46 <iframe id="crosEulaFrame" src="chrome://terms" | 46 <iframe id="crosEulaFrame" src="chrome://terms" |
| 47 role="document" class="flex focus-on-show" | 47 role="document" class="flex focus-on-show" |
| 48 aria-label="$i18n{oobeEulaIframeLabel}" | 48 aria-label$="$i18n{oobeEulaIframeLabel}" |
| 49 on-load="onFrameLoad_"> | 49 on-load="onFrameLoad_"> |
| 50 </iframe> | 50 </iframe> |
| 51 <a id="installationSettings" href="#" | 51 <a id="installationSettings" href="#" |
| 52 on-tap="onInstallationSettingsClicked_" | 52 on-tap="onInstallationSettingsClicked_" |
| 53 i18n-content="eulaSystemInstallationSettings"> | 53 i18n-content="eulaSystemInstallationSettings"> |
| 54 </a> | 54 </a> |
| 55 <div id="logging"> | 55 <div id="logging" class="layout horizontal"> |
| 56 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" | 56 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" |
| 57 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> | 57 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> |
| 58 </paper-checkbox> |
| 59 <div id="usageStatsLabelContainer"> |
| 58 <label id="usage-stats-label" i18n-content="checkboxLogging"> | 60 <label id="usage-stats-label" i18n-content="checkboxLogging"> |
| 59 </label> | 61 </label> |
| 60 <a id="" href="#" i18n-content="learnMore" | 62 <a id="" href="#" i18n-content="learnMore" |
| 61 on-tap="onUsageStatsHelpLinkClicked_"> | 63 on-tap="onUsageStatsHelpLinkClicked_"> |
| 62 </a> | 64 </a> |
| 63 </paper-checkbox> | 65 </div> |
| 64 </div> | 66 </div> |
| 65 </div> | 67 </div> |
| 66 <div class="bottom-buttons flex layout horizontal"> | 68 <div class="bottom-buttons flex layout horizontal"> |
| 67 <oobe-back-button on-tap="onEulaBackButtonPressed_"> | 69 <oobe-back-button on-tap="onEulaBackButtonPressed_"> |
| 68 </oobe-back-button> | 70 </oobe-back-button> |
| 69 <div class="flex"> | 71 <div class="flex"> |
| 70 </div> | 72 </div> |
| 71 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" | 73 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" |
| 72 disabled="[[acceptButtonDisabled]]"> | 74 disabled="[[acceptButtonDisabled]]"> |
| 73 <div i18n-content="oobeEulaAcceptAndContinueButtonText" | 75 <div i18n-content="oobeEulaAcceptAndContinueButtonText" |
| 74 id="accept-button-text"> | 76 id="accept-button-text"> |
| 75 </div> | 77 </div> |
| 76 </oobe-text-button> | 78 </oobe-text-button> |
| 77 </div> | 79 </div> |
| 78 </oobe-dialog> | 80 </oobe-dialog> |
| 79 </template> | 81 </template> |
| 80 </dom-module> | 82 </dom-module> |
| OLD | NEW |