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..e1b6d4b7837cad343725af9de79b0baea7f3d439 100644 |
--- a/Source/devtools/front_end/common/Settings.js |
+++ b/Source/devtools/front_end/common/Settings.js |
@@ -90,7 +90,9 @@ WebInspector.Settings = function() |
this.pauseOnExceptionEnabled = this.createSetting("pauseOnExceptionEnabled", false); |
this.pauseOnCaughtException = this.createSetting("pauseOnCaughtException", false); |
this.enableAsyncStackTraces = this.createSetting("enableAsyncStackTraces", false); |
- this.responsiveDesignMode = this.createSetting("responsiveDesignMode", false); |
+ |
+ this.responsiveDesign = {}; |
+ this.responsiveDesign.enabled = this.createSetting("responsiveDesign.enabled", false); |
} |
WebInspector.Settings.prototype = { |