| Index: third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js b/third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js
|
| index 6b11f19719eef1679a0e20ae559762c2b3e74a50..f171cb116812d5add93765e8183003e0676b50e3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js
|
| @@ -58,7 +58,7 @@ WebInspector.SettingsScreen = function()
|
| this.element.addEventListener("keydown", this._keyDown.bind(this), false);
|
| this._developerModeCounter = 0;
|
| this.setDefaultFocusedElement(this.contentElement);
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {string=} name
|
| @@ -73,7 +73,7 @@ WebInspector.SettingsScreen._showSettingsScreen = function(name)
|
| settingsScreen.show(dialog.element);
|
| dialog.show();
|
| settingsScreen._selectTab(name || "preferences");
|
| -}
|
| +};
|
|
|
| WebInspector.SettingsScreen.prototype = {
|
| /**
|
| @@ -105,7 +105,7 @@ WebInspector.SettingsScreen.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -122,7 +122,7 @@ WebInspector.SettingsTab = function(name, id)
|
| var header = this.element.createChild("header");
|
| header.createChild("h3").createTextChild(name);
|
| this.containerElement = this.element.createChild("div", "help-container-wrapper").createChild("div", "settings-tab help-content help-container");
|
| -}
|
| +};
|
|
|
| WebInspector.SettingsTab.prototype = {
|
| /**
|
| @@ -163,7 +163,7 @@ WebInspector.SettingsTab.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -191,7 +191,7 @@ WebInspector.GenericSettingsTab = function()
|
| WebInspector.settings.clearAll();
|
| WebInspector.reload();
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {!Runtime.Extension} extension
|
| @@ -205,7 +205,7 @@ WebInspector.GenericSettingsTab.isSettingVisible = function(extension)
|
| if (!("category" in descriptor))
|
| return false;
|
| return true;
|
| -}
|
| +};
|
|
|
| WebInspector.GenericSettingsTab.prototype = {
|
| /**
|
| @@ -284,7 +284,7 @@ WebInspector.GenericSettingsTab.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SettingsTab.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -313,7 +313,7 @@ WebInspector.WorkspaceSettingsTab = function()
|
| var fileSystems = WebInspector.isolatedFileSystemManager.fileSystems();
|
| for (var i = 0; i < fileSystems.length; ++i)
|
| this._addItem(fileSystems[i]);
|
| -}
|
| +};
|
|
|
| WebInspector.WorkspaceSettingsTab.prototype = {
|
| /**
|
| @@ -428,7 +428,7 @@ WebInspector.WorkspaceSettingsTab.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SettingsTab.prototype
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -446,7 +446,7 @@ WebInspector.ExperimentsSettingsTab = function()
|
| for (var i = 0; i < experiments.length; ++i)
|
| experimentsSection.appendChild(this._createExperimentCheckbox(experiments[i]));
|
| }
|
| -}
|
| +};
|
|
|
| WebInspector.ExperimentsSettingsTab.prototype = {
|
| /**
|
| @@ -481,13 +481,13 @@ WebInspector.ExperimentsSettingsTab.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SettingsTab.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| * @implements {WebInspector.ActionDelegate}
|
| */
|
| -WebInspector.SettingsScreen.ActionDelegate = function() { }
|
| +WebInspector.SettingsScreen.ActionDelegate = function() { };
|
|
|
| WebInspector.SettingsScreen.ActionDelegate.prototype = {
|
| /**
|
| @@ -511,13 +511,13 @@ WebInspector.SettingsScreen.ActionDelegate.prototype = {
|
| }
|
| return false;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| * @implements {WebInspector.Revealer}
|
| */
|
| -WebInspector.SettingsScreen.Revealer = function() { }
|
| +WebInspector.SettingsScreen.Revealer = function() { };
|
|
|
| WebInspector.SettingsScreen.Revealer.prototype = {
|
| /**
|
| @@ -580,4 +580,4 @@ WebInspector.SettingsScreen.Revealer.prototype = {
|
| }
|
| }
|
| }
|
| -}
|
| +};
|
|
|