| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" | 52 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" |
| 53 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> | 53 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> |
| 54 <label id="usage-stats-label" i18n-content="checkboxLogging"> | 54 <label id="usage-stats-label" i18n-content="checkboxLogging"> |
| 55 </label> | 55 </label> |
| 56 <a id="" href="#" i18n-content="learnMore" | 56 <a id="" href="#" i18n-content="learnMore" |
| 57 on-tap="onUsageStatsHelpLinkClicked_"> | 57 on-tap="onUsageStatsHelpLinkClicked_"> |
| 58 </a> | 58 </a> |
| 59 </paper-checkbox> | 59 </paper-checkbox> |
| 60 </div> | 60 </div> |
| 61 </div> | 61 </div> |
| 62 <div class="bottom-buttons flex layout horizontal end-justified"> | 62 <div class="bottom-buttons flex layout horizontal"> |
| 63 <oobe-text-button inverse on-tap="eulaAccepted_" | 63 <oobe-back-button on-tap="onEulaBackButtonPressed_"> |
| 64 </oobe-back-button> |
| 65 <div class="flex"> |
| 66 </div> |
| 67 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" |
| 64 disabled="[[acceptButtonDisabled]]"> | 68 disabled="[[acceptButtonDisabled]]"> |
| 65 <div i18n-content="oobeEulaAcceptAndContinueButtonText" | 69 <div i18n-content="oobeEulaAcceptAndContinueButtonText" |
| 66 id="accept-button-text"> | 70 id="accept-button-text"> |
| 67 </div> | 71 </div> |
| 68 </oobe-text-button> | 72 </oobe-text-button> |
| 69 </div> | 73 </div> |
| 70 </oobe-dialog> | 74 </oobe-dialog> |
| 71 </template> | 75 </template> |
| 72 </dom-module> | 76 </dom-module> |
| OLD | NEW |