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

Side by Side Diff: chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html

Issue 919183002: Move chromeos::device_event_log into components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Shut down in PostDestroyThreads. Created 5 years, 10 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;lang:language">
3 <head>
4 <meta charset="utf-8">
5 <title id="device-log-title" i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css">
7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://device-log/strings.js"></script>
10 <script src="chrome://device-log/device_log_ui.js"></script>
11 </head>
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
13 <div id="header">
14 <p i18n-content="autoRefreshText"></p>
15 </div>
16 <div id="log-checkbox-container">
17 <button id="log-refresh" i18n-content="logRefreshText"></button>
18 <label id="log-checkbox-show" i18n-content="logLevelShowText"></label>
19
20 <label>
21 <input id="log-level-error" type="checkbox">
22 <span i18n-content="logLevelErrorText"></span>
23 </label>
24 <label>
25 <input id="log-level-user" type="checkbox">
26 <span i18n-content="logLevelUserText"></span>
27 </label>
28 <label>
29 <input id="log-level-event" type="checkbox">
30 <span i18n-content="logLevelEventText"></span>
31 </label>
32 <label>
33 <input id="log-level-debug" type="checkbox">
34 <span i18n-content="logLevelDebugText"></span>
35 </label>
36 <label>
37 <input id="log-type-login" type="checkbox">
38 <span i18n-content="logTypeLoginText"></span>
39 </label>
40 <label>
41 <input id="log-type-network" type="checkbox">
42 <span i18n-content="logTypeNetworkText"></span>
43 </label>
44 <label>
45 <input id="log-type-power" type="checkbox">
46 <span i18n-content="logTypePowerText"></span>
47 </label>
48 <label>
49 <input id="log-fileinfo" type="checkbox">
50 <span i18n-content="logLevelFileinfoText"></span>
51 </label>
52 <label>
53 <input id="log-timedetail" type="checkbox">
54 <span i18n-content="logLevelTimeDetailText"></span>
55 </label>
56 </div>
57 <div id="log-container"></div>
58 <script src="chrome://resources/js/i18n_template2.js"></script>
59 </body>
60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698