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

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

Issue 9610006: Refactoring, moving and renaming the NetworkActionPredictor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Resolved sync conflicts. Created 8 years, 8 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/network_action_predictor/network_action_predictor.html
diff --git a/chrome/browser/resources/network_action_predictor/network_action_predictor.html b/chrome/browser/resources/network_action_predictor/network_action_predictor.html
deleted file mode 100644
index 735be085a19e0e46471c03200d794c7669e75217..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/network_action_predictor/network_action_predictor.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <meta charset="utf-8">
- <title>Network Action Predictor</title>
- <link rel="stylesheet" href="network_action_predictor.css">
- <script src="chrome://resources/js/util.js"></script>
- <script src="chrome://network-action-predictor/network_action_predictor.js">
- </script>
-</head>
-<body>
- <div id="enabledMode" hidden>
- <label>
- <input id="filter" type="checkbox" disabled>
- Filter zero confidences
- </label>
- <h2 id="countBanner"></h2>
- <!-- TODO(dominich): Sorting. -->
- <table id="databaseTable">
- <thead>
- <tr>
- <th>User Text</th>
- <th>URL</th>
- <th>Hit Count</th>
- <th>Miss Count</th>
- <th>Confidence</th>
- </tr>
- </thead>
- <tbody id="databaseTableBody">
- </tbody>
- </table>
- </div>
- <div id="disabledMode" hidden>
- <p>Network Action Predictor is disabled.</p>
- </div>
- <script src="chrome://resources/js/jstemplate_compiled.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698