OLD | NEW |
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 Loading... |
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 |
OLD | NEW |