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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html
diff --git a/chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html b/chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html
deleted file mode 100644
index 6d46248b497021be82cf4215642df1b446717212..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<html i18n-values="dir:textdirection;lang:language">
-<head>
- <meta charset="utf-8">
- <title id="device-log-title" i18n-content="titleText"></title>
- <link rel="stylesheet" href="chrome://device-log/device_log_ui.css">
- <script src="chrome://resources/js/load_time_data.js"></script>
- <script src="chrome://resources/js/util.js"></script>
- <script src="chrome://device-log/strings.js"></script>
- <script src="chrome://device-log/device_log_ui.js"></script>
-</head>
-<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
- <div id="header">
- <p i18n-content="autoRefreshText"></p>
- </div>
- <div id="log-checkbox-container">
- <button id="log-refresh" i18n-content="logRefreshText"></button>
- <label id="log-checkbox-show" i18n-content="logLevelShowText"></label>
-
- <label>
- <input id="log-level-error" type="checkbox">
- <span i18n-content="logLevelErrorText"></span>
- </label>
- <label>
- <input id="log-level-user" type="checkbox">
- <span i18n-content="logLevelUserText"></span>
- </label>
- <label>
- <input id="log-level-event" type="checkbox">
- <span i18n-content="logLevelEventText"></span>
- </label>
- <label>
- <input id="log-level-debug" type="checkbox">
- <span i18n-content="logLevelDebugText"></span>
- </label>
- <label>
- <input id="log-type-login" type="checkbox">
- <span i18n-content="logTypeLoginText"></span>
- </label>
- <label>
- <input id="log-type-network" type="checkbox">
- <span i18n-content="logTypeNetworkText"></span>
- </label>
- <label>
- <input id="log-type-power" type="checkbox">
- <span i18n-content="logTypePowerText"></span>
- </label>
- <label>
- <input id="log-fileinfo" type="checkbox">
- <span i18n-content="logLevelFileinfoText"></span>
- </label>
- <label>
- <input id="log-timedetail" type="checkbox">
- <span i18n-content="logLevelTimeDetailText"></span>
- </label>
- </div>
- <div id="log-container"></div>
- <script src="chrome://resources/js/i18n_template2.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698