| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 </iframe> | 67 </iframe> |
| 68 <a id="installationSettings" href="#" | 68 <a id="installationSettings" href="#" |
| 69 on-tap="onInstallationSettingsClicked_" | 69 on-tap="onInstallationSettingsClicked_" |
| 70 i18n-content="eulaSystemInstallationSettings"> | 70 i18n-content="eulaSystemInstallationSettings"> |
| 71 </a> | 71 </a> |
| 72 <div id="logging" class="layout horizontal"> | 72 <div id="logging" class="layout horizontal"> |
| 73 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" | 73 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" |
| 74 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> | 74 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> |
| 75 </paper-checkbox> | 75 </paper-checkbox> |
| 76 <div id="usageStatsLabelContainer"> | 76 <div id="usageStatsLabelContainer"> |
| 77 <label id="usage-stats-label" i18n-content="checkboxLogging"> | 77 <label i18n-content="checkboxLogging"></label> |
| 78 </label> | |
| 79 <a id="" href="#" i18n-content="learnMore" | 78 <a id="" href="#" i18n-content="learnMore" |
| 80 on-tap="onUsageStatsHelpLinkClicked_"> | 79 on-tap="onUsageStatsHelpLinkClicked_"> |
| 81 </a> | 80 </a> |
| 82 </div> | 81 </div> |
| 83 </div> | 82 </div> |
| 84 </div> | 83 </div> |
| 85 <div class="bottom-buttons flex layout horizontal"> | 84 <div class="bottom-buttons flex layout horizontal"> |
| 86 <oobe-back-button on-tap="onEulaBackButtonPressed_"> | 85 <oobe-back-button on-tap="onEulaBackButtonPressed_"> |
| 87 </oobe-back-button> | 86 </oobe-back-button> |
| 88 <div class="flex"> | 87 <div class="flex"> |
| 89 </div> | 88 </div> |
| 90 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" | 89 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" |
| 91 disabled="[[acceptButtonDisabled]]"> | 90 disabled="[[acceptButtonDisabled]]"> |
| 92 <div i18n-content="oobeEulaAcceptAndContinueButtonText" | 91 <div i18n-content="oobeEulaAcceptAndContinueButtonText" |
| 93 id="accept-button-text"> | 92 id="accept-button-text"> |
| 94 </div> | 93 </div> |
| 95 </oobe-text-button> | 94 </oobe-text-button> |
| 96 </div> | 95 </div> |
| 97 </oobe-dialog> | 96 </oobe-dialog> |
| 98 </template> | 97 </template> |
| 99 </dom-module> | 98 </dom-module> |
| OLD | NEW |