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

Side by Side Diff: ui/keyboard/resources/webui_index.html

Issue 208633002: [Code cleanup]Remove webui virtual keyboard code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ui/keyboard/resources/webui/main.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <!--
3 -- Copyright 2013 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file.
6 -->
7
8 <!--
9 -- To avoid unintentionally break webui keyboard when changing extension
10 -- keyboard, creates this file and uses it as index.html for webui keyboard.
11 -- TODO(bshe): remove this file when dynamic layout loading is fixed
12 -- (http://www.crbug.com/260278).
13 -->
14
15 <html>
16 <head>
17 <meta charset="UTF-8">
18 <meta name="viewport" content="width=device-width, initial-scale=1, maximum- scale=1, minimum-scale=1, user-scalable=no">
19 <link rel="stylesheet" href="main.css">
20 <script src="constants.js"></script>
21 <script src="polymer_loader.js"></script>
22 <script src="api_adapter.js"></script>
23 <script src="voice_input.js"></script>
24 <link rel="import" href="elements/kb-altkey.html">
25 <link rel="import" href="elements/kb-altkey-container.html">
26 <link rel="import" href="elements/kb-altkey-data.html">
27 <link rel="import" href="elements/kb-altkey-set.html">
28 <link rel="import" href="elements/kb-key-codes.html">
29 <link rel="import" href="elements/kb-key-base.html">
30 <link rel="import" href="elements/kb-key.html">
31 <link rel="import" href="elements/kb-keyboard.html">
32 <link rel="import" href="elements/kb-keyset.html">
33 <link rel="import" href="elements/kb-row.html">
34 <link rel="import" href="elements/kb-shift-key.html">
35 <link id="numeric" rel="import" href="layouts/numeric.html">
36 <link id="qwerty" rel="import" href="layouts/qwerty.html">
37 <!--TODO(stevet): Import 'Open Sans' font. -->
38 <script src="main.js"></script>
39 <script src="layouts/latin-accents.js"></script>
40 </head>
41 <body>
42 <kb-keyboard id="keyboard" touch-action="none" layout="qwerty">
43 </kb-keyboard>
44 </body>
45 </html>
OLDNEW
« no previous file with comments | « ui/keyboard/resources/webui/main.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698