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

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

Issue 2912593002: Create OOBE screen for Voice Interaction value proposition (Closed)
Patch Set: Create OOBE screen for Voice Interaction value proposition 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
(Empty)
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
3 found in the LICENSE file. -->
4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
6
7 <dom-module id="voice-interaction-value-prop-md">
8 <template>
9 <link rel="stylesheet" href="oobe_voice_interaction_value_prop.css">
10 <link rel="stylesheet" href="oobe_dialog_parameters.css">
11 <oobe-dialog id="voiceInteractionValuePropDialog" role="dialog" hide-shadow
12 has-buttons no-footer>
13 <div class = "header">
14 <webview id="value-prop-view"></webview>
15 </div>
16 <div class="bottom-buttons flex layout horizontal">
17 <div class="flex"></div>
18 <oobe-text-button id="noThanksButton" border on-tap="onNoThanksTap_">
19 <div i18n-content="voiceInteractionValuePropNoThanksButton"></div>
20 </oobe-text-button>
21 <oobe-text-button inverse on-tap="onContinueTap_">
22 <div i18n-content="voiceInteractionValuePropContinueButton"></div>
23 </oobe-text-button>
24 </div>
25 </oobe-dialog>
26 </template>
27 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698