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

Side by Side Diff: chrome/browser/resources/hotword_audio_verification/main.html

Issue 1011283003: Hotword: Make the opt-in flow tab ordering more intuitive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review Comments Created 5 years, 9 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset=utf-8> 4 <meta charset=utf-8>
5 <title i18n-content="introTitle"></title> 5 <title i18n-content="introTitle"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link type="text/css" rel="stylesheet" href="style.css"> 7 <link type="text/css" rel="stylesheet" href="style.css">
8 <script src="chrome://resources/js/action_link.js"></script> 8 <script src="chrome://resources/js/action_link.js"></script>
9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/cr/ui.js"></script>
Dan Beam 2015/03/19 18:52:24 actually, you shouldn't need ui.js at all, as far
11 <script src="chrome://resources/js/cr/ui/node_utils.js"></script>
Dan Beam 2015/03/19 18:50:06 i can also fix node_utils.js to export the cr.ui n
9 <script src="chrome://resources/js/load_time_data.js"></script> 12 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
11 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 14 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
12 <script src="flow.js"></script> 15 <script src="flow.js"></script>
13 <script src="main.js"></script> 16 <script src="main.js"></script>
14 </head> 17 </head>
15 <body> 18 <body>
16 <div id="steps"> 19 <div id="steps">
17 <include src="steps/start_step.html"> 20 <include src="steps/start_step.html">
18 <include src="steps/audio_history_step.html"> 21 <include src="steps/audio_history_step.html">
19 <include src="steps/speech_training_step.html"> 22 <include src="steps/speech_training_step.html">
20 <include src="steps/finished_step.html"> 23 <include src="steps/finished_step.html">
21 </div> 24 </div>
22 </body> 25 </body>
23 </html> 26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698