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

Unified Diff: chrome/browser/resources/net_export/net_export.html

Issue 1361923005: Move net-export resources to //components/net_log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/net_export/net_export.html
diff --git a/chrome/browser/resources/net_export/net_export.html b/chrome/browser/resources/net_export/net_export.html
deleted file mode 100644
index fde4370d73a49a9f06168c2935f32ff94eb27cc4..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/net_export/net_export.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<meta charset="utf-8">
-<if expr="is_android">
-<meta name="viewport" content="width=device-width">
-</if>
-<script src="chrome://resources/js/util.js"></script>
-<script src="chrome://resources/js/cr.js"></script>
-<script src="chrome://net-export/net_export.js"></script>
-<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
-<link rel="stylesheet" href="net_export.css">
-</head>
-<body>
- <h2>Network Log Export</h2>
- <div id="net-export-main">
- <div>
- <button id="export-view-start-data" disabled>
- Start Logging to Disk
- <div class="warning" id="export-view-deletes-log-text" hidden>
- Deletes old log
- </div>
- </button>
- </div>
- <div>
- <button id="export-view-stop-data" disabled>Stop Logging</button>
- </div>
- <div>
- <button id="export-view-send-data" disabled>
- Email Log
- <div class="warning" id="export-view-private-data-text" hidden>
- Log contains private information
- </div>
- <div class="warning" id="export-view-send-old-log-text" hidden>
- Log file from previous session
- </div>
- </button>
- </div>
- <p>
- <b>INSTRUCTIONS</b>: Start logging, reproduce the problem,
- and then stop logging. Make sure to send the email before
- starting to log again. Otherwise, the log will be deleted.
- </p>
- <p>
- Logs can be loaded in
- <a href="chrome://net-internals" target="_blank">net-internals</a>
- of desktop Chrome.
- </p>
- <p>
- <b><span class="warning">WARNING</span></b>: Logs contain a list of sites
- visited from when logging started to when logging stopped. They may also
- contain general network configuration information, such as DNS and proxy
- configuration. If private information is not stripped, the logs also
- contain cookies and credentials.
- </p>
- <p>
- <b>ADVANCED</b>:
- <span class="warning">This section should normally be left alone.</span>
- <div class="radio-button-div">
- <label>
- <input id="export-view-strip-private-data-button" type="radio"
- name="log-mode" value="STRIP_PRIVATE_DATA" checked disabled>
- Strip private information
- </label>
- </div>
- <div class="radio-button-div">
- <label>
- <input id="export-view-include-private-data-button" type="radio"
- name="log-mode" value="NORMAL" disabled>
- Include cookies and credentials
- </label>
- </div>
- <div class="radio-button-div">
- <label>
- <input id="export-view-log-bytes-button" type="radio"
- name="log-mode" value="LOG_BYTES" disabled>
- Include raw bytes (will include cookies and credentials)
- </label>
- </div>
- </p>
- </div>
- <pre id="export-view-file-path-text"></pre>
-</body>
-</html>
« no previous file with comments | « chrome/browser/resources/net_export/net_export.css ('k') | chrome/browser/resources/net_export/net_export.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698