| Index: Source/devtools/front_end/common/Settings.js
|
| diff --git a/Source/devtools/front_end/common/Settings.js b/Source/devtools/front_end/common/Settings.js
|
| index e264cdcf783eddd8dadee50bed16f4944b26e212..0fa0018b779d01ff35810a5e0480e0d7a7c3f13e 100644
|
| --- a/Source/devtools/front_end/common/Settings.js
|
| +++ b/Source/devtools/front_end/common/Settings.js
|
| @@ -677,8 +677,15 @@ WebInspector.VersionController.prototype = {
|
| }
|
| }
|
|
|
| -WebInspector.settings = new WebInspector.Settings();
|
| -WebInspector.experimentsSettings = new WebInspector.ExperimentsSettings(WebInspector.queryParam("experiments") !== null);
|
| +/**
|
| + * @type {!WebInspector.Settings}
|
| + */
|
| +WebInspector.settings;
|
| +
|
| +/**
|
| + * @type {!WebInspector.ExperimentsSettings}
|
| + */
|
| +WebInspector.experimentsSettings;
|
|
|
| // These methods are added for backwards compatibility with Devtools CodeSchool extension.
|
| // DO NOT REMOVE
|
| @@ -754,5 +761,3 @@ WebInspector.PauseOnExceptionStateSetting.prototype = {
|
| this._eventSupport.dispatchEventToListeners(this._name, this._value);
|
| }
|
| }
|
| -
|
| -WebInspector.settings.pauseOnExceptionStateString = new WebInspector.PauseOnExceptionStateSetting();
|
|
|