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

Unified Diff: Source/devtools/front_end/Settings.js

Issue 80383004: DevTools: Show asynchronous call stacks on frontend. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 7 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
« no previous file with comments | « Source/devtools/front_end/Script.js ('k') | Source/devtools/front_end/SettingsScreen.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/Settings.js
diff --git a/Source/devtools/front_end/Settings.js b/Source/devtools/front_end/Settings.js
index f995d6d4d73b10724010c31028835d57a08edd2c..8e7e4772b74a91f2cfac724c28f7f37e27fdef99 100644
--- a/Source/devtools/front_end/Settings.js
+++ b/Source/devtools/front_end/Settings.js
@@ -117,6 +117,8 @@ WebInspector.Settings = function()
this.screencastSidebarWidth = this.createSetting("screencastSidebarWidth", 300);
this.showEmulationViewInDrawer = this.createSetting("showEmulationViewInDrawer", true);
this.showRenderingViewInDrawer = this.createSetting("showRenderingViewInDrawer", true);
+ this.enableAsyncStackTraces = this.createSetting("enableAsyncStackTraces", false);
+ this.maxAsyncStackTraceDepth = this.createSetting("maxAsyncStackTraceDepth", 4);
}
WebInspector.Settings.prototype = {
« no previous file with comments | « Source/devtools/front_end/Script.js ('k') | Source/devtools/front_end/SettingsScreen.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698