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

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

Issue 14494004: Added the 'Translation Logs' tab to chrome://translate-internals/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (Rebasing) 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <!-- 3 <!--
4 Copyright 2013 The Chromium Authors. All rights reserved. 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 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Translate Internals</title> 10 <title>Translate Internals</title>
11 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 11 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
12 <link rel="stylesheet" href="./translate_internals.css"> 12 <link rel="stylesheet" href="./translate_internals.css">
13 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://resources/js/cr.js"></script> 14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/i18n_template.js"></script> 15 <script src="chrome://resources/js/i18n_template.js"></script>
16 <script src="chrome://resources/js/cr/event_target.js"></script> 16 <script src="chrome://resources/js/cr/event_target.js"></script>
17 <script src="chrome://resources/js/cr/ui.js"></script> 17 <script src="chrome://resources/js/cr/ui.js"></script>
18 <script src="chrome://resources/js/cr/ui/tabs.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> 19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
20 <script src="/strings.js"></script> 20 <script src="/strings.js"></script>
21 <script src="./translate_internals.js"></script> 21 <script src="./translate_internals.js"></script>
22 </head> 22 </head>
23 23
24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
25 25
26 <tabbox> 26 <tabbox>
27 <tabs> 27 <tabs>
28 <tab>Prefs</tab> 28 <tab>Prefs</tab>
29 <tab>Detection Logs</tab>
29 </tabs> 30 </tabs>
30 <tabpanels> 31 <tabpanels>
31 32
32 <tabpanel id="prefs"> 33 <tabpanel id="prefs">
33 <div> 34 <div>
34 <include src="prefs.html"/> 35 <include src="prefs.html"/>
35 </div> 36 </div>
36 </tabpanel> 37 </tabpanel>
37 38
39 <tabpanel id="detection-logs">
40 <div>
41 <include src="detection_logs.html"/>
42 </div>
43 </tabpanel>
44
38 </tabpanels> 45 </tabpanels>
39 </tabbox> 46 </tabbox>
40 47
41 <script src="chrome://resources/js/i18n_template.js"></script> 48 <script src="chrome://resources/js/i18n_template.js"></script>
42 <script src="chrome://resources/js/i18n_process.js"></script> 49 <script src="chrome://resources/js/i18n_process.js"></script>
43 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 50 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
44 </body> 51 </body>
45 52
46 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698