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

Issue 351923005: Refactoring activity logger. (Closed)

Created:
6 years, 5 months ago by pmarch
Modified:
6 years, 5 months ago
Reviewers:
haraken, esprehn, pfeldman
CC:
blink-reviews, blink-reviews-html_chromium.org, arv+blink, feature-media-reviews_chromium.org, gasubic, sof, eae+blinkwatch, fs, eric.carlson_apple.com, vcarbune.chromium, blink-reviews-dom_chromium.org, dglazkov+blink, nessy, Inactive, gavinp+prerender_chromium.org, watchdog-blink-watchlist_google.com, philipj_slow, rwlbuis, felt, mvrable, Devlin
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Enables logger to log changes to certain elements and attributes. BUG=388287 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=177289

Patch Set 1 #

Total comments: 4

Patch Set 2 : comments #

Patch Set 3 : rebase #

Patch Set 4 : include #

Patch Set 5 : fix merge problem #

Patch Set 6 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+269 lines, -39 lines) Patch
M Source/core/dom/Document.idl View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/Element.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/dom/Element.cpp View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/URLUtils.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLAnchorElement.h View 1 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLAnchorElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLButtonElement.h View 1 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLButtonElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLButtonElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLCanvasElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLEmbedElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormElement.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLFormElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLFormElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLIFrameElement.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLIFrameElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLIFrameElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLImageElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLInputElement.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLInputElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLInputElement.idl View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLLinkElement.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLLinkElement.cpp View 1 2 3 4 5 1 chunk +16 lines, -0 lines 0 comments Download
M Source/core/html/HTMLLinkElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMediaElement.idl View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLModElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLObjectElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLQuoteElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLScriptElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLSourceElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTrackElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLVideoElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/web/tests/ActivityLoggerTest.cpp View 1 2 3 4 5 17 chunks +140 lines, -15 lines 0 comments Download

Messages

Total messages: 29 (0 generated)
pmarch
Hi Kentaro and Pavel Could you please look into this CL. Thanks
6 years, 5 months ago (2014-06-27 15:05:53 UTC) #1
haraken
+esprehn Would you just check if this change doesn't regress performance of Dromaeo/dom-attr? https://codereview.chromium.org/351923005/diff/1/Source/core/html/HTMLAnchorElement.h File ...
6 years, 5 months ago (2014-06-27 15:18:08 UTC) #2
pmarch
https://codereview.chromium.org/351923005/diff/1/Source/core/html/HTMLAnchorElement.h File Source/core/html/HTMLAnchorElement.h (right): https://codereview.chromium.org/351923005/diff/1/Source/core/html/HTMLAnchorElement.h#newcode88 Source/core/html/HTMLAnchorElement.h:88: virtual void attributeWillChange(const QualifiedName&, const AtomicString&, const AtomicString&) OVERRIDE; ...
6 years, 5 months ago (2014-06-27 16:55:45 UTC) #3
pmarch
On 2014/06/27 15:18:08, haraken wrote: > +esprehn > > Would you just check if this ...
6 years, 5 months ago (2014-06-27 16:57:42 UTC) #4
haraken
LGTM
6 years, 5 months ago (2014-06-28 00:09:05 UTC) #5
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-06-29 20:38:20 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/20001
6 years, 5 months ago (2014-06-29 20:38:28 UTC) #7
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_blink_compile_dbg on tryserver.blink ...
6 years, 5 months ago (2014-06-29 21:25:46 UTC) #8
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-06-29 21:27:16 UTC) #9
commit-bot: I haz the power
Try jobs failed on following builders: mac_blink_compile_dbg on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/mac_blink_compile_dbg/builds/10746) mac_gpu on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu/builds/22997)
6 years, 5 months ago (2014-06-29 21:27:17 UTC) #10
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 09:02:04 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/40001
6 years, 5 months ago (2014-06-30 09:02:21 UTC) #12
pmarch
The CQ bit was unchecked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 09:09:08 UTC) #13
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 09:29:05 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/60001
6 years, 5 months ago (2014-06-30 09:29:27 UTC) #15
pmarch
The CQ bit was unchecked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 09:52:09 UTC) #16
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 10:09:29 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/80001
6 years, 5 months ago (2014-06-30 10:10:29 UTC) #18
pmarch
The CQ bit was unchecked by pmarch@chromium.org
6 years, 5 months ago (2014-06-30 10:26:53 UTC) #19
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-07-01 09:21:41 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/100001
6 years, 5 months ago (2014-07-01 09:22:04 UTC) #21
pmarch
The CQ bit was unchecked by pmarch@chromium.org
6 years, 5 months ago (2014-07-01 09:24:15 UTC) #22
pfeldman
web/ rslgtm
6 years, 5 months ago (2014-07-01 09:27:45 UTC) #23
pmarch
The CQ bit was checked by pmarch@chromium.org
6 years, 5 months ago (2014-07-01 09:28:04 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pmarch@chromium.org/351923005/100001
6 years, 5 months ago (2014-07-01 09:28:21 UTC) #25
commit-bot: I haz the power
Change committed as 177289
6 years, 5 months ago (2014-07-01 10:31:49 UTC) #26
eseidel
A revert of this CL has been created in https://codereview.chromium.org/362073004/ by eseidel@chromium.org. The reason for ...
6 years, 5 months ago (2014-07-01 19:50:59 UTC) #27
pmarch
On 2014/07/01 19:50:59, eseidel wrote: > A revert of this CL has been created in ...
6 years, 5 months ago (2014-07-01 20:31:51 UTC) #28
pmarch
6 years, 5 months ago (2014-07-01 20:48:55 UTC) #29
Message was sent while issue was closed.
On 2014/07/01 20:31:51, pmarch wrote:
> On 2014/07/01 19:50:59, eseidel wrote:
> > A revert of this CL has been created in
> > https://codereview.chromium.org/362073004/ by mailto:eseidel@chromium.org.
> > 
> > The reason for reverting is: This appears to have added a flaky test which
> > caused the Bilnk roll to get reverted:
> > 
> > http://src.chromium.org/viewvc/chrome?view=rev&revision=280864.
> 
> I will disable tests instead reverting this CL and investigate the issue.

CL https://codereview.chromium.org/366723002/ to disable the flaky test.

Powered by Google App Engine
This is Rietveld 408576698