Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.html

Issue 2952943002: Update voice interaction OOBE with new UX spec (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6
7 <dom-module id="voice-interaction-value-prop-md"> 7 <dom-module id="voice-interaction-value-prop-md">
8 <template> 8 <template>
9 <link rel="stylesheet" href="oobe_voice_interaction_value_prop.css"> 9 <link rel="stylesheet" href="oobe_voice_interaction_value_prop.css">
10 <link rel="stylesheet" href="oobe_dialog_parameters.css"> 10 <link rel="stylesheet" href="oobe_dialog_parameters.css">
11 <oobe-dialog id="voiceInteractionValuePropDialog" role="dialog" hide-shadow 11 <oobe-dialog id="voice-dialog" role="dialog" hide-shadow
12 has-buttons no-footer-padding> 12 has-buttons no-footer-padding android>
13 <div class = "header"> 13 <div class = "header">
14 <webview id="value-prop-view"></webview> 14 <webview id="value-prop-view"></webview>
15 </div> 15 </div>
16 <div class="bottom-buttons flex layout horizontal"> 16 <div class="bottom-buttons flex layout horizontal">
17 <div class="flex"></div> 17 <oobe-text-button id="noThanksButton" android on-tap="onNoThanksTap_">
18 <oobe-text-button id="noThanksButton" border on-tap="onNoThanksTap_">
19 <div i18n-content="voiceInteractionValuePropNoThanksButton"></div> 18 <div i18n-content="voiceInteractionValuePropNoThanksButton"></div>
20 </oobe-text-button> 19 </oobe-text-button>
21 <oobe-text-button id="continueButton" inverse on-tap="onContinueTap_"> 20 <div class="flex"></div>
21 <oobe-text-button id="continueButton" inverse android
22 on-tap="onContinueTap_">
22 <div i18n-content="voiceInteractionValuePropContinueButton"></div> 23 <div i18n-content="voiceInteractionValuePropContinueButton"></div>
23 </oobe-text-button> 24 </oobe-text-button>
24 </div> 25 </div>
25 </oobe-dialog> 26 </oobe-dialog>
26 </template> 27 </template>
27 </dom-module> 28 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698