| OLD | NEW |
| 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2017 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/paper-checkbox/paper-ch
eckbox.html"> | 7 <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-styles/color.html
"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 9 | 9 |
| 10 | 10 |
| 11 <dom-module name="arc-tos-md"> | 11 <dom-module id="arc-tos-md"> |
| 12 <template> | 12 <template> |
| 13 <link rel="stylesheet" href="arc_terms_of_service.css"> | 13 <link rel="stylesheet" href="arc_terms_of_service.css"> |
| 14 <link rel="stylesheet" href="oobe_dialog_parameters.css"> | 14 <link rel="stylesheet" href="oobe_dialog_parameters.css"> |
| 15 <oobe-dialog id="arc-tos-dialog-md" class="arc-tos-loading" has-buttons> | 15 <oobe-dialog id="arc-tos-dialog-md" class="arc-tos-loading" has-buttons> |
| 16 <iron-icon src="chrome://oobe/playstore.svg" class="oobe-icon"> | 16 <iron-icon src="chrome://oobe/playstore.svg" class="oobe-icon"> |
| 17 </iron-icon> | 17 </iron-icon> |
| 18 <div class="header"> | 18 <div class="header"> |
| 19 <h1 class="title" i18n-content="arcTermsOfServiceScreenHeading"></h1> | 19 <h1 class="title" i18n-content="arcTermsOfServiceScreenHeading"></h1> |
| 20 <div class="subtitle" i18n-content="arcTermsOfServiceScreenDescription"> | 20 <div class="subtitle" i18n-content="arcTermsOfServiceScreenDescription"> |
| 21 </div> | 21 </div> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 </oobe-text-button> | 60 </oobe-text-button> |
| 61 <oobe-text-button id="arc-tos-accept-button-md" | 61 <oobe-text-button id="arc-tos-accept-button-md" |
| 62 inverse on-tap="onAccept_" | 62 inverse on-tap="onAccept_" |
| 63 disabled="[[arcTosButtonsDisabled]]"> | 63 disabled="[[arcTosButtonsDisabled]]"> |
| 64 <div i18n-content="arcTermsOfServiceAcceptButton"></div> | 64 <div i18n-content="arcTermsOfServiceAcceptButton"></div> |
| 65 </oobe-text-button> | 65 </oobe-text-button> |
| 66 </div> | 66 </div> |
| 67 </oobe-dialog> | 67 </oobe-dialog> |
| 68 </template> | 68 </template> |
| 69 </dom-module> | 69 </dom-module> |
| OLD | NEW |