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

Issue 2700293002: DevTools: do not use RAII for sync native breakpoints, reuse AsyncTask where possible. (Closed)

Created:
3 years, 10 months ago by pfeldman
Modified:
3 years, 10 months ago
Reviewers:
kozy, dgozman, alph, caseq
CC:
chromium-reviews, mvanouwerkerk+watch_chromium.org, caseq+blink_chromium.org, Peter Beverloo, awdf+watch_chromium.org, pfeldman+blink_chromium.org, mlamouri+watch-blink_chromium.org, sof, eae+blinkwatch, lushnikov+blink_chromium.org, haraken, blink-reviews-dom_chromium.org, dglazkov+blink, blink-reviews-bindings_chromium.org, timvolodine, devtools-reviews_chromium.org, blink-reviews, apavlov+blink_chromium.org, kozyatinskiy+blink_chromium.org, rwlbuis
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

DevTools: do not use RAII for sync native breakpoints, reuse AsyncTask where possible. BUG=693803 Review-Url: https://codereview.chromium.org/2700293002 Cr-Original-Commit-Position: refs/heads/master@{#452355} Committed: https://chromium.googlesource.com/chromium/src/+/c0ff4c0d40a8b9ab8ed809a446aa298450c23462 Review-Url: https://codereview.chromium.org/2700293002 Cr-Commit-Position: refs/heads/master@{#452667} Committed: https://chromium.googlesource.com/chromium/src/+/fbd566a07bb73d4321780c44ac5ed0fb2ef342e0

Patch Set 1 #

Patch Set 2 : Introduce progress monitor #

Total comments: 7

Patch Set 3 : addressed comments #

Patch Set 4 : tests fixed #

Patch Set 5 : same #

Patch Set 6 : Introduce progress monitor #

Patch Set 7 : same with unused assert removed - assert is trivial #

Unified diffs Side-by-side diffs Delta from patch set Stats (+125 lines, -111 lines) Patch
M third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-skip-break-program.html View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/ScriptController.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Document.cpp View 1 2 3 4 5 6 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.cpp View 1 2 3 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp View 1 2 3 3 chunks +7 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/core/frame/DOMTimer.cpp View 1 2 3 4 5 6 chunks +9 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/frame/DOMTimerCoordinator.cpp View 1 2 3 4 5 6 1 chunk +2 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/frame/DOMWindow.cpp View 1 2 3 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/BUILD.gn View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorInstrumentation.h View 1 2 chunks +41 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp View 1 2 4 chunks +44 lines, -20 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorInstrumentationCustomInl.h View 1 chunk +0 lines, -20 lines 0 comments Download
M third_party/WebKit/Source/core/loader/DocumentLoader.cpp View 1 2 3 4 chunks +4 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js View 1 2 3 4 3 chunks +6 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/modules/geolocation/Geolocation.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/notifications/Notification.cpp View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 47 (29 generated)
pfeldman
3 years, 10 months ago (2017-02-18 01:22:23 UTC) #2
kozy
lgtm
3 years, 10 months ago (2017-02-21 20:05:09 UTC) #11
alph
lgtm https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/frame/DOMTimer.cpp File third_party/WebKit/Source/core/frame/DOMTimer.cpp (right): https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/frame/DOMTimer.cpp#newcode99 third_party/WebKit/Source/core/frame/DOMTimer.cpp:99: InspectorInstrumentation::asyncTaskScheduledBreakable(context, "setTimeout", what happenned to setInterval? https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp File ...
3 years, 10 months ago (2017-02-21 20:13:58 UTC) #12
caseq
lgtm https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp File third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp (right): https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp#newcode119 third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp:119: return; {} around this one. https://codereview.chromium.org/2700293002/diff/20001/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp#newcode122 third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp:122: domDebuggerAgent->allowNativeBreakpoint(name, ...
3 years, 10 months ago (2017-02-21 21:04:27 UTC) #13
pfeldman
all done, second class for task w/ break acknowledged.
3 years, 10 months ago (2017-02-21 21:09:02 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/40001
3 years, 10 months ago (2017-02-22 17:55:14 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/215715)
3 years, 10 months ago (2017-02-22 18:22:38 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/40001
3 years, 10 months ago (2017-02-22 19:31:32 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/393418)
3 years, 10 months ago (2017-02-22 20:55:20 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/60001
3 years, 10 months ago (2017-02-22 22:00:01 UTC) #26
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/393569)
3 years, 10 months ago (2017-02-22 23:16:48 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/80001
3 years, 10 months ago (2017-02-23 00:39:03 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/100001
3 years, 10 months ago (2017-02-23 00:52:44 UTC) #35
commit-bot: I haz the power
Committed patchset #6 (id:100001) as https://chromium.googlesource.com/chromium/src/+/c0ff4c0d40a8b9ab8ed809a446aa298450c23462
3 years, 10 months ago (2017-02-23 02:41:16 UTC) #38
findit-for-me
FYI: Findit identified this CL at revision 452355 as the culprit for failures in the ...
3 years, 10 months ago (2017-02-23 03:06:20 UTC) #39
caseq
A revert of this CL (patchset #6 id:100001) has been created in https://codereview.chromium.org/2713613003/ by caseq@chromium.org. ...
3 years, 10 months ago (2017-02-23 03:09:25 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2700293002/120001
3 years, 10 months ago (2017-02-23 21:25:27 UTC) #44
commit-bot: I haz the power
3 years, 10 months ago (2017-02-23 23:17:54 UTC) #47
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/chromium/src/+/fbd566a07bb73d4321780c44ac5e...

Powered by Google App Engine
This is Rietveld 408576698