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

Issue 743153002: [DevTools] Show stack trace for exceptions in dedicated workers (Closed)

Created:
6 years, 1 month ago by kozy
Modified:
6 years ago
Reviewers:
vsevik, pfeldman
CC:
blink-reviews, kinuko+worker_chromium.org, blink-reviews-bindings_chromium.org, arv+blink, falken, horo+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@worker-capture-stack
Project:
blink
Visibility:
Public.

Description

[DevTools] Show stack trace for exceptions in dedicated workers BUG=431274 R=vsevik@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=187386

Patch Set 1 #

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Total comments: 4

Patch Set 4 : #

Patch Set 5 : #

Total comments: 1

Patch Set 6 : Rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+122 lines, -17 lines) Patch
M LayoutTests/fast/workers/worker-onerror-04-expected.txt View 1 2 3 4 1 chunk +0 lines, -1 line 0 comments Download
A LayoutTests/inspector/console/resources/worker-with-throw.js View 1 2 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/inspector/console/worker-exception-message-contains-stack.html View 1 2 3 1 chunk +62 lines, -0 lines 0 comments Download
A LayoutTests/inspector/console/worker-exception-message-contains-stack-expected.txt View 1 2 3 1 chunk +7 lines, -0 lines 0 comments Download
M Source/bindings/core/v8/V8Initializer.cpp View 1 2 3 4 5 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/workers/WorkerGlobalScope.h View 1 2 3 4 5 2 chunks +4 lines, -0 lines 0 comments Download
M Source/core/workers/WorkerGlobalScope.cpp View 1 2 3 3 chunks +22 lines, -2 lines 0 comments Download
M Source/core/workers/WorkerMessagingProxy.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/workers/WorkerMessagingProxy.cpp View 1 2 3 4 5 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/workers/WorkerObjectProxy.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/workers/WorkerObjectProxy.cpp View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/workers/WorkerReportingProxy.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/web/ServiceWorkerGlobalScopeProxy.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/web/ServiceWorkerGlobalScopeProxy.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/web/WebSharedWorkerImpl.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/web/WebSharedWorkerImpl.cpp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 20 (5 generated)
kozy
Vsevolod, ptal!
6 years, 1 month ago (2014-11-20 14:12:17 UTC) #1
vsevik
The code looks fine, the test failure here seems to be an actual bug though. ...
6 years ago (2014-11-24 09:51:34 UTC) #2
kozy
On 2014/11/24 09:51:34, vsevik wrote: > We should also add a test for this. Done. ...
6 years ago (2014-12-01 13:11:29 UTC) #4
kozy
https://codereview.chromium.org/743153002/diff/20001/Source/core/workers/WorkerGlobalScope.cpp File Source/core/workers/WorkerGlobalScope.cpp (right): https://codereview.chromium.org/743153002/diff/20001/Source/core/workers/WorkerGlobalScope.cpp#newcode65 Source/core/workers/WorkerGlobalScope.cpp:65: static unsigned long s_workerExceptionUniqueIdentifier = 0; On 2014/11/24 09:51:34, ...
6 years ago (2014-12-01 13:11:55 UTC) #5
vsevik
lgtm https://codereview.chromium.org/743153002/diff/60001/LayoutTests/inspector/console/worker-exception-message-contains-stack.html File LayoutTests/inspector/console/worker-exception-message-contains-stack.html (right): https://codereview.chromium.org/743153002/diff/60001/LayoutTests/inspector/console/worker-exception-message-contains-stack.html#newcode31 LayoutTests/inspector/console/worker-exception-message-contains-stack.html:31: InspectorTest.expandConsoleMessages(step3); I'd like to see both cases tested ...
6 years ago (2014-12-01 15:06:03 UTC) #6
kozy
https://codereview.chromium.org/743153002/diff/60001/LayoutTests/inspector/console/worker-exception-message-contains-stack.html File LayoutTests/inspector/console/worker-exception-message-contains-stack.html (right): https://codereview.chromium.org/743153002/diff/60001/LayoutTests/inspector/console/worker-exception-message-contains-stack.html#newcode31 LayoutTests/inspector/console/worker-exception-message-contains-stack.html:31: InspectorTest.expandConsoleMessages(step3); On 2014/12/01 15:06:02, vsevik wrote: > I'd like ...
6 years ago (2014-12-01 16:17:05 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/743153002/100001
6 years ago (2014-12-02 12:13:36 UTC) #9
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/blink_presubmit/builds/21166)
6 years ago (2014-12-02 12:22:01 UTC) #11
kozy
Vsevolod, PTAL. Removed one line from LayoutTests/fast/workers/worker-onerror-04-expected.txt. I suppose in this test case we shouldn't ...
6 years ago (2014-12-02 12:47:57 UTC) #12
vsevik
https://codereview.chromium.org/743153002/diff/100001/LayoutTests/fast/workers/worker-onerror-04-expected.txt File LayoutTests/fast/workers/worker-onerror-04-expected.txt (left): https://codereview.chromium.org/743153002/diff/100001/LayoutTests/fast/workers/worker-onerror-04-expected.txt#oldcode1 LayoutTests/fast/workers/worker-onerror-04-expected.txt:1: CONSOLE ERROR: line 7: Uncaught ReferenceError: foo is not ...
6 years ago (2014-12-02 14:58:59 UTC) #13
kozy
On 2014/12/02 14:58:59, vsevik wrote: > https://codereview.chromium.org/743153002/diff/100001/LayoutTests/fast/workers/worker-onerror-04-expected.txt > File LayoutTests/fast/workers/worker-onerror-04-expected.txt (left): > > https://codereview.chromium.org/743153002/diff/100001/LayoutTests/fast/workers/worker-onerror-04-expected.txt#oldcode1 > ...
6 years ago (2014-12-17 14:37:01 UTC) #14
kozy
Pavel,ptal. I need owner review for Source/web/* files.
6 years ago (2014-12-17 14:40:10 UTC) #16
pfeldman
lgtm
6 years ago (2014-12-17 14:40:45 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/743153002/120001
6 years ago (2014-12-17 15:54:49 UTC) #19
commit-bot: I haz the power
6 years ago (2014-12-17 17:06:56 UTC) #20
Message was sent while issue was closed.
Committed patchset #6 (id:120001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=187386

Powered by Google App Engine
This is Rietveld 408576698