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

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

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 6 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
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} */ 10 /** @type {!Element} */
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 106 }
107 107
108 _createCacheSection() { 108 _createCacheSection() {
109 var section = this._createSection(Common.UIString('Caching'), 'network-confi g-disable-cache'); 109 var section = this._createSection(Common.UIString('Caching'), 'network-confi g-disable-cache');
110 section.appendChild(UI.SettingsUI.createSettingCheckbox( 110 section.appendChild(UI.SettingsUI.createSettingCheckbox(
111 Common.UIString('Disable cache'), Common.moduleSetting('cacheDisabled'), true)); 111 Common.UIString('Disable cache'), Common.moduleSetting('cacheDisabled'), true));
112 } 112 }
113 113
114 _createNetworkThrottlingSection() { 114 _createNetworkThrottlingSection() {
115 var section = this._createSection(Common.UIString('Network throttling'), 'ne twork-config-throttling'); 115 var section = this._createSection(Common.UIString('Network throttling'), 'ne twork-config-throttling');
116 NetworkConditions.NetworkConditionsSelector.decorateSelect( 116 MobileThrottling.NetworkConditionsSelector.decorateSelect(
117 /** @type {!HTMLSelectElement} */ (section.createChild('select', 'chrome -select'))); 117 /** @type {!HTMLSelectElement} */ (section.createChild('select', 'chrome -select')));
118 } 118 }
119 119
120 _createUserAgentSection() { 120 _createUserAgentSection() {
121 var section = this._createSection(Common.UIString('User agent'), 'network-co nfig-ua'); 121 var section = this._createSection(Common.UIString('User agent'), 'network-co nfig-ua');
122 var checkboxLabel = UI.CheckboxLabel.create(Common.UIString('Select automati cally'), true); 122 var checkboxLabel = UI.CheckboxLabel.create(Common.UIString('Select automati cally'), true);
123 section.appendChild(checkboxLabel); 123 section.appendChild(checkboxLabel);
124 this._autoCheckbox = checkboxLabel.checkboxElement; 124 this._autoCheckbox = checkboxLabel.checkboxElement;
125 this._autoCheckbox.addEventListener('change', this._userAgentTypeChanged.bin d(this)); 125 this._autoCheckbox.addEventListener('change', this._userAgentTypeChanged.bin d(this));
126 126
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
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' 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'
355 }, 355 },
356 { 356 {
357 title: 'UC Browser \u2014 Windows Phone', 357 title: 'UC Browser \u2014 Windows Phone',
358 value: 358 value:
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' 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'
360 } 360 }
361 ] 361 ]
362 } 362 }
363 ]; 363 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698