| 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 <dom-module id="voice-interaction-value-prop-md"> | 5 <dom-module id="voice-interaction-value-prop-md"> |
| 6 <template> | 6 <template> |
| 7 <link rel="stylesheet" href="oobe_dialog_parameters.css"> | 7 <link rel="stylesheet" href="oobe_dialog_parameters.css"> |
| 8 <link rel="stylesheet" href="oobe_flex_layout.css"> | 8 <link rel="stylesheet" href="oobe_flex_layout.css"> |
| 9 <link rel="stylesheet" href="oobe_voice_interaction_value_prop.css"> | 9 <link rel="stylesheet" href="oobe_voice_interaction_value_prop.css"> |
| 10 <oobe-dialog id="voice-dialog" class="value-prop-loading" role="dialog" | 10 <oobe-dialog id="voice-dialog" class="value-prop-loading" role="dialog" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 </div> | 21 </div> |
| 22 </div> | 22 </div> |
| 23 <div id="loading-container"> | 23 <div id="loading-container"> |
| 24 <div id="loading-message"> | 24 <div id="loading-message"> |
| 25 <div i18n-content="voiceInteractionValuePropLoading"></div> | 25 <div i18n-content="voiceInteractionValuePropLoading"></div> |
| 26 </div> | 26 </div> |
| 27 <paper-progress class="slow" indeterminate></paper-progress> | 27 <paper-progress class="slow" indeterminate></paper-progress> |
| 28 </div> | 28 </div> |
| 29 </div> | 29 </div> |
| 30 <div class="bottom-buttons flex layout horizontal"> | 30 <div class="bottom-buttons flex layout horizontal"> |
| 31 <oobe-text-button id="skip-button" android on-tap="onNoThanksTap_" | 31 <oobe-text-button id="skip-button" android on-tap="onSkipTap_" |
| 32 disabled="[[valuePropButtonsDisabled]]"> | 32 disabled="[[valuePropButtonsDisabled]]"> |
| 33 <div i18n-content="voiceInteractionValuePropSkipButton"></div> | 33 <div i18n-content="voiceInteractionValuePropSkipButton"></div> |
| 34 </oobe-text-button> | 34 </oobe-text-button> |
| 35 <oobe-text-button id="no-thanks-button" android on-tap="onNoThanksTap_" | |
| 36 disabled="[[valuePropButtonsDisabled]]"> | |
| 37 <div i18n-content="voiceInteractionValuePropNoThanksButton"></div> | |
| 38 </oobe-text-button> | |
| 39 <div class="flex"></div> | 35 <div class="flex"></div> |
| 40 <oobe-text-button id="retry-button" inverse android on-tap="onRetryTap_" | 36 <oobe-text-button id="retry-button" inverse android on-tap="onRetryTap_" |
| 41 disabled="[[valuePropButtonsDisabled]]"> | 37 disabled="[[valuePropButtonsDisabled]]"> |
| 42 <div i18n-content="voiceInteractionValuePropRetryButton"></div> | 38 <div i18n-content="voiceInteractionValuePropRetryButton"></div> |
| 43 </oobe-text-button> | 39 </oobe-text-button> |
| 44 <oobe-text-button id="continue-button" inverse android | 40 <oobe-text-button id="next-button" inverse android |
| 45 on-tap="onContinueTap_" disabled="[[valuePropButtonsDisabled]]"> | 41 on-tap="onNextTap_" disabled="[[valuePropButtonsDisabled]]"> |
| 46 <div i18n-content="voiceInteractionValuePropContinueButton"></div> | 42 <div i18n-content="voiceInteractionValuePropNextButton"></div> |
| 47 </oobe-text-button> | 43 </oobe-text-button> |
| 48 </div> | 44 </div> |
| 49 </oobe-dialog> | 45 </oobe-dialog> |
| 50 </template> | 46 </template> |
| 51 </dom-module> | 47 </dom-module> |
| OLD | NEW |