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

Unified Diff: chrome/browser/resources/hotword_audio_verification/main.html

Issue 521483003: Hotword Audio Verification App: Adds hotwording assets and basic opt-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review Comments Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/hotword_audio_verification/main.html
diff --git a/chrome/browser/resources/hotword_audio_verification/main.html b/chrome/browser/resources/hotword_audio_verification/main.html
index a37c7330592d3220ea45aefeb967cbbfdaf1e5a7..f91071166fd02e6affcf34606bca06eddf3a2216 100644
--- a/chrome/browser/resources/hotword_audio_verification/main.html
+++ b/chrome/browser/resources/hotword_audio_verification/main.html
@@ -1,7 +1,21 @@
-<!DOCTYPE html>
-<html>
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
<head>
+ <meta charset=utf-8>
+ <title></title>
+ <link type="text/css" rel="stylesheet" href="style.css">
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="flow.js"></script>
+ <script src="main.js"></script>
</head>
<body>
+ <div id="steps">
+ <!-- TODO(kcarattini): Localize the strings in the following files. -->
+ <include src="steps/hotword_only_step.html">
+ <include src="steps/audio_history_step.html">
+ <include src="steps/hotword_audio_history_step.html">
+ <include src="steps/speech_training_step.html">
+ <include src="steps/finished_step.html">
+ </div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698