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

Unified Diff: ui/keyboard/resources/index.html

Issue 15176004: Web Component Virtual Keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: ui/keyboard/resources/index.html
diff --git a/ui/keyboard/resources/index.html b/ui/keyboard/resources/index.html
index fd05578b2914d15a44edf553b94e47d3f8619264..e00d88e81ec9fb916164b5a444a6c2f35474b7d3 100644
--- a/ui/keyboard/resources/index.html
+++ b/ui/keyboard/resources/index.html
@@ -1,11 +1,26 @@
<!DOCTYPE HTML>
+<!--
+ -- Copyright (c) 2013 The Chromium Authors. All rights reserved.
+ -- Use of this source code is governed by a BSD-style license that can be
+ -- found in the LICENSE file.
+ -->
+
<html>
<head>
+ <meta charset="UTF-8">
<link rel="stylesheet" href="main.css">
+ <script src="constants.js"></script>
+ <script src="polymer.min.js"></script>
<script src="api_adapter.js"></script>
- <script src="common.js"></script>
- <script src="layout_us.js"></script>
+ <script src="voice_input.js"></script>
+ <link rel="import" href="elements/kb-key.html">
+ <link rel="import" href="elements/kb-row.html">
+ <link rel="import" href="elements/kb-keyset.html">
+ <link rel="import" href="elements/kb-keyboard.html">
+ <link id="keysets" rel="import" href="keysets.html">
<script src="main.js"></script>
</head>
- <body id="b"></body>
+ <body>
+ <kb-keyboard id="keyboard" touch-action="none" keyset="lower"></kb-keyboard>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698