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

Side by Side Diff: chrome/browser/resources/net_internals/proxyview.js

Issue 6025017: Adds the ability to load JSON log files to about:net-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Put load log button on its own line Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * This view displays information on the proxy setup: 6 * This view displays information on the proxy setup:
7 * 7 *
8 * - Shows the current proxy settings. 8 * - Shows the current proxy settings.
9 * - Has a button to reload these settings. 9 * - Has a button to reload these settings.
10 * - Shows the log entries for the most recent INIT_PROXY_RESOLVER source 10 * - Shows the log entries for the most recent INIT_PROXY_RESOLVER source
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 }; 107 };
108 108
109 ProxyView.prototype.onLogEntriesDeleted = function(sourceIds) { 109 ProxyView.prototype.onLogEntriesDeleted = function(sourceIds) {
110 if (sourceIds.indexOf(this.latestProxySourceId_) != -1) 110 if (sourceIds.indexOf(this.latestProxySourceId_) != -1)
111 this.clearLog_(); 111 this.clearLog_();
112 }; 112 };
113 113
114 ProxyView.prototype.onAllLogEntriesDeleted = function() { 114 ProxyView.prototype.onAllLogEntriesDeleted = function() {
115 this.clearLog_(); 115 this.clearLog_();
116 }; 116 };
117
118 ProxyView.prototype.onSetIsViewingLogFile = function(isViewingLogFile) {
119 };
120
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/main.js ('k') | chrome/browser/resources/net_internals/tabswitcherview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698