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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/module.json

Issue 2828863002: [DevTools] enable async stacks by default (Closed)
Patch Set: ac Created 3 years, 8 months 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
Index: third_party/WebKit/Source/devtools/front_end/sdk/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/module.json b/third_party/WebKit/Source/devtools/front_end/sdk/module.json
index 8bb5fab5bcae6af056a80df266567fc3e9b158c7..f9396d16a8e7be179b338366535e8318d8418e31 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/module.json
@@ -62,17 +62,19 @@
{
"type": "setting",
"category": "Debugger",
- "settingName": "enableAsyncStackTraces",
+ "title": "Disable async stack traces",
+ "settingName": "disableAsyncStackTraces",
"settingType": "boolean",
"defaultValue": false,
+ "order": 2,
"options": [
{
"value": true,
- "title": "Capture async stack traces"
+ "title": "Do not capture async stack traces"
},
{
"value": false,
- "title": "Do not capture async stack traces"
+ "title": "Capture async stack traces"
}
]
},

Powered by Google App Engine
This is Rietveld 408576698