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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 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.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 |
127 this._customUserAgentSetting = Common.settings.createSetting('customUserAgen
t', ''); | 127 this._customUserAgentSetting = Common.settings.createSetting('customUserAgen
t', ''); |
128 this._customUserAgentSetting.addChangeListener(this._customUserAgentChanged,
this); | 128 this._customUserAgentSetting.addChangeListener(this._customUserAgentChanged,
this); |
129 | 129 |
130 this._customUserAgent = section.createChild('div', 'network-config-ua-custom
'); | 130 this._customUserAgent = section.createChild('div', 'network-config-ua-custom
'); |
131 this._customSelectAndInput = Network.NetworkConfigView.createUserAgentSelect
AndInput(); | 131 this._customSelectAndInput = Network.NetworkConfigView.createUserAgentSelect
AndInput(); |
132 this._customSelectAndInput.select.classList.add('chrome-select'); | 132 this._customSelectAndInput.select.classList.add('chrome-select'); |
(...skipping 221 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 |