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

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

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.js
diff --git a/chrome/browser/resources/network_action_predictor/network_action_predictor.js b/chrome/browser/resources/network_action_predictor/network_action_predictor.js
deleted file mode 100644
index 8a6fe7741965d694ce9742c9cf8b80ccdca4b223..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/network_action_predictor/network_action_predictor.js
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-/**
- * Requests the database from the backend.
- */
-function requestNetworkActionPredictorDb() {
- console.debug('Requesting NAP DB');
- chrome.send('requestNetworkActionPredictorDb');
-}
-
-
-/**
- * Callback from backend with the database contents. Sets up some globals and
- * calls to create the UI.
- * @param {Dictionary} database Information about NetworkActionPredictor
- * including the database as a flattened list, a boolean indicating if the
- * system is enabled and the current hit weight.
- */
-function updateDatabaseTable(database) {
- console.debug('Updating Table NAP DB');
-
- var filter = $('filter');
- filter.disabled = false;
- filter.onchange = function() {
- updateDatabaseView(database);
- };
-
- updateDatabaseView(database);
-}
-
-/**
- * Updates the table from the database.
- * @param {Dictionary} database Information about NetworkActionPredictor
- * including the database as a flattened list, a boolean indicating if the
- * system is enabled and the current hit weight.
- */
-function updateDatabaseView(database) {
- var databaseSection = $('databaseTableBody');
- var showEnabled = database.enabled && database.db;
-
- $('enabledMode').hidden = !showEnabled;
- $('disabledMode').hidden = showEnabled;
-
- if (!showEnabled)
- return;
-
- var filter = $('filter');
-
- // Clear any previous list.
- databaseSection.textContent = '';
-
- for (var i = 0; i < database.db.length; ++i) {
- var entry = database.db[i];
-
- if (!filter.checked || entry.confidence > 0) {
- var row = document.createElement('tr');
- row.className = (entry.confidence > 0.8 ? 'action-prerender' :
- (entry.confidence > 0.5 ? 'action-preconnect' :
- 'action-none'));
-
- row.appendChild(document.createElement('td')).textContent =
- entry.user_text;
- row.appendChild(document.createElement('td')).textContent = entry.url;
- row.appendChild(document.createElement('td')).textContent =
- entry.hit_count;
- row.appendChild(document.createElement('td')).textContent =
- entry.miss_count;
- row.appendChild(document.createElement('td')).textContent =
- entry.confidence;
-
- databaseSection.appendChild(row);
- }
- }
- $('countBanner').textContent = 'Entries: ' + databaseSection.children.length;
- $('countBanner').textContent += ' Hit Weight: ' + database.hit_weight;
-}
-
-document.addEventListener('DOMContentLoaded', requestNetworkActionPredictorDb);
-
-

Powered by Google App Engine
This is Rietveld 408576698