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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js

Issue 2653363002: [Devtools] Added typing to network in prep for removing unrestricted (Closed)
Patch Set: changes Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 * @unrestricted 5 * @unrestricted
6 */ 6 */
7 Network.NetworkConfigView = class extends UI.VBox { 7 Network.NetworkConfigView = class extends UI.VBox {
8 constructor() { 8 constructor() {
9 super(true); 9 super(true);
10 /** @type {!Element} */
11 this._autoCheckbox;
12 /** @type {!{input: !Element, select: !Element}} */
13 this._customSelectAndInput;
10 this.registerRequiredCSS('network/networkConfigView.css'); 14 this.registerRequiredCSS('network/networkConfigView.css');
11 this.contentElement.classList.add('network-config'); 15 this.contentElement.classList.add('network-config');
12 16
13 this._createCacheSection(); 17 this._createCacheSection();
14 this.contentElement.createChild('div').classList.add('panel-section-separato r'); 18 this.contentElement.createChild('div').classList.add('panel-section-separato r');
15 this._createNetworkThrottlingSection(); 19 this._createNetworkThrottlingSection();
16 this.contentElement.createChild('div').classList.add('panel-section-separato r'); 20 this.contentElement.createChild('div').classList.add('panel-section-separato r');
17 this._createUserAgentSection(); 21 this._createUserAgentSection();
18 } 22 }
19 23
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 value: 'UCWEB/2.0 (iPad; U; CPU OS 7_1 like Mac OS X; en; iPad3,6) U2/1. 0.0 UCBrowser/9.3.1.344' 354 value: 'UCWEB/2.0 (iPad; U; CPU OS 7_1 like Mac OS X; en; iPad3,6) U2/1. 0.0 UCBrowser/9.3.1.344'
351 }, 355 },
352 { 356 {
353 title: 'UC Browser \u2014 Windows Phone', 357 title: 'UC Browser \u2014 Windows Phone',
354 value: 358 value:
355 'NokiaX2-02/2.0 (11.79) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozi lla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2;.NET CLR 2.0.5 0727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) U CBrowser8.4.0.159/70/352' 359 'NokiaX2-02/2.0 (11.79) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozi lla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2;.NET CLR 2.0.5 0727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) U CBrowser8.4.0.159/70/352'
356 } 360 }
357 ] 361 ]
358 } 362 }
359 ]; 363 ];
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698