| Index: Source/devtools/front_end/modules.js
|
| diff --git a/Source/devtools/front_end/modules.js b/Source/devtools/front_end/modules.js
|
| index 0e2f024990c5aeeef42601316ca2908558cb2c9a..dde0de24905c94a7c9c95ad703a266c2894ef4a3 100644
|
| --- a/Source/devtools/front_end/modules.js
|
| +++ b/Source/devtools/front_end/modules.js
|
| @@ -78,6 +78,31 @@ var allDescriptors = [
|
| }
|
| ],
|
| className: "WebInspector.Main.DebugReloadActionDelegate"
|
| + },
|
| + {
|
| + type: "setting",
|
| + title: "Disable cache (while DevTools is open)",
|
| + settingName: "cacheDisabled",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Appearance",
|
| + title: "Split panels vertically when docked to right",
|
| + settingName: "splitVerticallyWhenDockedToRight",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Appearance",
|
| + settingType: "custom",
|
| + className: "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Extensions",
|
| + settingType: "custom",
|
| + className: "WebInspector.HandlerRegistry.OpenAnchorLocationSettingDelegate"
|
| }
|
| ]
|
| },
|
| @@ -119,6 +144,47 @@ var allDescriptors = [
|
| type: "@WebInspector.Revealer",
|
| contextTypes: ["WebInspector.DOMNode"],
|
| className: "WebInspector.ElementsPanel.DOMNodeRevealer"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Elements",
|
| + title: "Color format",
|
| + settingName: "colorFormat",
|
| + settingType: "select",
|
| + options: [
|
| + [ "As authored", "original" ],
|
| + [ "HEX: #DAC0DE", "hex", true ],
|
| + [ "RGB: rgb(128, 255, 255)", "rgb", true ],
|
| + [ "HSL: hsl(300, 80%, 90%)", "hsl", true ]
|
| + ]
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Elements",
|
| + title: "Show user agent styles",
|
| + settingName: "showUserAgentStyles",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Elements",
|
| + title: "Show user agent shadow DOM",
|
| + settingName: "showUAShadowDOM",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Elements",
|
| + title: "Word wrap",
|
| + settingName: "domWordWrap",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Elements",
|
| + title: "Show rulers",
|
| + settingName: "showMetricsRulers",
|
| + settingType: "checkbox"
|
| }
|
| ],
|
| scripts: [ "ElementsPanel.js" ]
|
| @@ -157,6 +223,19 @@ var allDescriptors = [
|
| type: "@WebInspector.TokenizerFactory",
|
| className: "WebInspector.CodeMirrorUtils.TokenizerFactory"
|
| },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Default indentation",
|
| + settingName: "textEditorIndent",
|
| + settingType: "select",
|
| + options: [
|
| + ["2 spaces", " "],
|
| + ["4 spaces", " "],
|
| + ["8 spaces", " "],
|
| + ["Tab character", "\t"]
|
| + ]
|
| + }
|
| ],
|
| scripts: [ "CodeMirrorTextEditor.js" ]
|
| },
|
| @@ -237,6 +316,83 @@ var allDescriptors = [
|
| }
|
| ],
|
| className: "WebInspector.SourcesPanel.ShowGoToSourceDialogActionDelegate"
|
| + },
|
| + {
|
| + type: "setting",
|
| + settingName: "javaScriptDisabled",
|
| + settingType: "custom",
|
| + className: "WebInspector.SourcesPanel.DisableJavaScriptSettingDelegate"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Search in content scripts",
|
| + settingName: "searchInContentScripts",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Enable JavaScript source maps",
|
| + settingName: "jsSourceMapsEnabled",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Detect indentation",
|
| + settingName: "textEditorAutoDetectIndent",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Autocompletion",
|
| + settingName: "textEditorAutocompletion",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Bracket matching",
|
| + settingName: "textEditorBracketMatching",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Show whitespace characters",
|
| + settingName: "showWhitespacesInEditor",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + title: "Enable CSS source maps",
|
| + settingName: "cssSourceMapsEnabled",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + title: "Auto-reload generated CSS",
|
| + parentSettingName: "cssSourceMapsEnabled",
|
| + settingName: "cssReloadEnabled",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Sources",
|
| + experiment: "frameworksDebuggingSupport",
|
| + title: "Skip stepping through sources with particular names",
|
| + settingName: "skipStackFramesSwitch",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + experiment: "frameworksDebuggingSupport",
|
| + parentSettingName: "skipStackFramesSwitch",
|
| + settingType: "custom",
|
| + className: "WebInspector.SourcesPanel.SkipStackFramePatternSettingDelegate"
|
| }
|
| ],
|
| scripts: [ "SourcesPanel.js" ]
|
| @@ -268,6 +424,20 @@ var allDescriptors = [
|
| type: "@WebInspector.ContextMenu.Provider",
|
| contextTypes: ["WebInspector.RemoteObject"],
|
| className: "WebInspector.ProfilesPanel.ContextMenuProvider"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Profiler",
|
| + title: "Show advanced heap snapshot properties",
|
| + settingName: "showAdvancedHeapSnapshotProperties",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Profiler",
|
| + title: "High resolution CPU profiling",
|
| + settingName: "highResolutionCpuProfiling",
|
| + settingType: "checkbox"
|
| }
|
| ],
|
| scripts: [ "ProfilesPanel.js" ]
|
| @@ -333,6 +503,27 @@ var allDescriptors = [
|
| }
|
| ],
|
| className: "WebInspector.ConsoleView.ShowConsoleActionDelegate"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Console",
|
| + title: "Log XMLHttpRequests",
|
| + settingName: "monitoringXHREnabled",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Console",
|
| + title: "Preserve log upon navigation",
|
| + settingName: "preserveConsoleLog",
|
| + settingType: "checkbox"
|
| + },
|
| + {
|
| + type: "setting",
|
| + section: "Console",
|
| + title: "Show timestamps",
|
| + settingName: "consoleTimestampsEnabled",
|
| + settingType: "checkbox"
|
| }
|
| ],
|
| scripts: [ "ConsolePanel.js" ]
|
|
|