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

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

Issue 7531005: Rename the net_internals file names to include hyphens. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add some missing files Created 9 years, 4 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 * SocketPoolWrapper is a wrapper around socket pools entries. It's 6 * SocketPoolWrapper is a wrapper around socket pools entries. It's
7 * used by the log and sockets view to print tables containing both 7 * used by the log and sockets view to print tables containing both
8 * a synopsis of the state of all pools, and listing the groups within 8 * a synopsis of the state of all pools, and listing the groups within
9 * individual pools. 9 * individual pools.
10 * 10 *
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 /** 161 /**
162 * Takes in a list of source IDs and returns a link that will select the 162 * Takes in a list of source IDs and returns a link that will select the
163 * specified sources. 163 * specified sources.
164 */ 164 */
165 SocketPoolWrapper.sourceListLink = function(sources) { 165 SocketPoolWrapper.sourceListLink = function(sources) {
166 if (!sources.length) 166 if (!sources.length)
167 return null; 167 return null;
168 return '#events&q=id:' + sources.join('%20id:'); 168 return '#events&q=id:' + sources.join('%20id:');
169 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698