| OLD | NEW |
| 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 Loading... |
| 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 Components.NetworkConditionsSelector.decorateSelect( | 116 NetworkConditions.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.createCheckboxLabel(Common.UIString('Select automatic
ally'), true); | 122 var checkboxLabel = UI.createCheckboxLabel(Common.UIString('Select automatic
ally'), 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 Loading... |
| 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 ]; |
| OLD | NEW |