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

Unified Diff: third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js

Issue 2901133002: DevTools: Disable Audits2 buttons when service worker is active (Closed)
Patch Set: add stack logging Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js
diff --git a/third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js b/third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js
index b5b69da2c2430503073127015e6eb6d0b7725f78..aa1cb39256a9dcd00981ec6a86a86bc06e0a9b31 100644
--- a/third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js
+++ b/third_party/WebKit/Source/devtools/front_end/worker_service/ServiceDispatcher.js
@@ -46,7 +46,7 @@ var ServiceDispatcher = class {
}
this._dispatchMessage(message);
} catch (e) {
- this._sendErrorResponse(message['id'], e.toString());
+ this._sendErrorResponse(message['id'], e.toString() + ' ' + e.stack);
}
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698