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

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

Issue 2604883002: DevTools: namespace globals (Closed)
Patch Set: address CL feedback Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js
index caa4d5d40c50ef10eb3b9c6758e2a7a61e282d12..9ecb71a11c89705eb9c6c2ff4619953f421866d5 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkConfigView.js
@@ -115,7 +115,7 @@ Network.NetworkConfigView = class extends UI.VBox {
_createUserAgentSection() {
var section = this._createSection(Common.UIString('User agent'), 'network-config-ua');
- var checkboxLabel = createCheckboxLabel(Common.UIString('Select automatically'), true);
+ var checkboxLabel = UI.createCheckboxLabel(Common.UIString('Select automatically'), true);
section.appendChild(checkboxLabel);
this._autoCheckbox = checkboxLabel.checkboxElement;
this._autoCheckbox.addEventListener('change', this._userAgentTypeChanged.bind(this));

Powered by Google App Engine
This is Rietveld 408576698