| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7de0ca396cbaa117e01f5624e4043b21b306a8e7
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/chromeos/device_log_ui/device_log_ui.html
|
| @@ -0,0 +1,60 @@
|
| +<!DOCTYPE html>
|
| +<html i18n-values="dir:textdirection;">
|
| +<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>
|
|
|