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

Side by Side Diff: chrome/browser/resources/translate_internals/translate_internals.html

Issue 13842010: Added chrome://translate-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix for Windows (SendMessage could be replaced with SendMessageW) Created 7 years, 8 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 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <!--
4 Copyright 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <head>
9 <meta charset="utf-8">
10 <title>Translate Internals</title>
11 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
12 <link rel="stylesheet" href="./translate_internals.css">
13 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/i18n_template.js"></script>
16 <script src="chrome://resources/js/cr/event_target.js"></script>
17 <script src="chrome://resources/js/cr/ui.js"></script>
18 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
20 <script src="./translate_internals.js"></script>
21 </head>
22
23 <body>
24
25 <tabbox>
26 <tabs>
27 <tab>Prefs</tab>
28 </tabs>
29 <tabpanels>
30
31 <tabpanel id="tabpanel-prefs">
32 <h2>Prefs</h2>
33 <p></p>
34 </tabpanel>
35
36 </tabpanels>
37 </tabbox>
38
39 </body>
40
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698