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

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)

Created:
3 years, 11 months ago by engedy
Modified:
3 years, 7 months ago
CC:
chromium-reviews, mlamouri+watch-content_chromium.org, blink-reviews-html_chromium.org, creis+watch_chromium.org, mlamouri+watch-blink_chromium.org, nasko+codewatch_chromium.org, jam, Randy Smith (Not in Mondays), dcheng, blink-reviews, dglazkov+blink, darin-cc_chromium.org, loading-reviews_chromium.org, kinuko+watch, blink-reviews-api_chromium.org, subresource-filter-reviews_chromium.org, clamy, alexmos
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. NavigationThrottle::WillStartRequest and WillRedirectRequest can now return BLOCK_REQUEST_AND_COLLAPSE for navigations taking place in subframes. Returning this throttle result will block the navigation, and load an error page instead, similarly to BLOCK_REQUEST, but in addition, the child frame's owner element in the parent frame will also be collapsed, i.e. removed from the layout. The frame owner element is restored on the next successful (non-error-page) navigation commit. BUG=637415 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2632633006 Cr-Commit-Position: refs/heads/master@{#474735} Committed: https://chromium.googlesource.com/chromium/src/+/6e2e0996275dd48dd4497f9c57e6370a423eb3ec

Patch Set 1 #

Patch Set 2 : Remove surplus semicolon. #

Total comments: 14

Patch Set 3 : Addressed comments from clamy@. #

Patch Set 4 : Rebase. #

Total comments: 4

Patch Set 5 : Moar tests. #

Total comments: 1

Patch Set 6 : Rebase. #

Total comments: 7

Patch Set 7 : Rebase + add checks for |net_error_code|. #

Patch Set 8 : Extend tests, fix redirects. Non-PlzNavigate version still broken. #

Total comments: 24

Patch Set 9 : Rebase again. #

Patch Set 10 : Addressed comments, made redirect response PlzNavigate-only. #

Total comments: 15

Patch Set 11 : Address comments from alexmos@. #

Patch Set 12 : Rebase. #

Patch Set 13 : Clean up frame name vs id. #

Patch Set 14 : ... and without breaking stuff. #

Total comments: 16

Patch Set 15 : Rebase. #

Patch Set 16 : Addressed comments from clamy@ and nasko@. #

Patch Set 17 : Remove unused code. Wire up new throttle result in the subresource filter. #

Patch Set 18 : Add tests for redirects. #

Patch Set 19 : Update unittests. #

Total comments: 4

Patch Set 20 : Addressed comments from csharrison@. #

Total comments: 4

Patch Set 21 : Comment nits. #

Patch Set 22 : Rebase. #

Total comments: 16

Patch Set 23 : Addressed comments from dcheng@. #

Patch Set 24 : Rebase. #

Patch Set 25 : Update SubframeNavigationFilteringThrottleTest.DelayMetrics #

Patch Set 26 : Fix navigation transition type. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+588 lines, -77 lines) Patch
M chrome/browser/subresource_filter/subresource_filter_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 4 chunks +87 lines, -16 lines 0 comments Download
M chrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -0 lines 0 comments Download
M components/subresource_filter/content/browser/content_subresource_filter_throttle_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 13 chunks +30 lines, -14 lines 0 comments Download
M components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +5 lines, -2 lines 0 comments Download
M components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +15 lines, -6 lines 0 comments Download
M components/subresource_filter/content/browser/subframe_navigation_filtering_throttle_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 8 chunks +33 lines, -6 lines 0 comments Download
M content/browser/frame_host/frame_tree_node.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +17 lines, -0 lines 0 comments Download
M content/browser/frame_host/frame_tree_node.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +10 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigation_handle_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 5 chunks +27 lines, -2 lines 0 comments Download
M content/browser/frame_host/navigation_handle_impl_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 7 chunks +265 lines, -23 lines 0 comments Download
M content/browser/frame_host/navigation_request.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 3 chunks +5 lines, -4 lines 0 comments Download
M content/browser/frame_host/render_frame_host_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +6 lines, -0 lines 0 comments Download
M content/browser/frame_host/render_frame_host_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +21 lines, -0 lines 0 comments Download
M content/browser/loader/navigation_resource_throttle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -1 line 0 comments Download
M content/common/frame_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +5 lines, -0 lines 0 comments Download
M content/public/browser/navigation_handle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +4 lines, -2 lines 0 comments Download
M content/public/browser/navigation_throttle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +6 lines, -0 lines 0 comments Download
M content/public/test/navigation_simulator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/render_frame_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/render_frame_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +5 lines, -0 lines 0 comments Download
M content/renderer/render_frame_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/render_frame_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +5 lines, -0 lines 0 comments Download
A content/test/data/frame_tree/legacy_frameset.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLIFrameElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +15 lines, -1 line 0 comments Download
M third_party/WebKit/Source/web/WebFrame.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/WebKit/public/web/WebFrame.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 150 (93 generated)
engedy
@Nasko, @Camille, could you please take an initial look?
3 years, 11 months ago (2017-01-13 17:54:15 UTC) #5
engedy
On 2017/01/13 17:54:15, engedy wrote: > @Nasko, @Camille, could you please take an initial look? ...
3 years, 11 months ago (2017-01-13 19:03:09 UTC) #10
engedy
Friendly ping. Could you please have an initial look?
3 years, 11 months ago (2017-01-18 09:31:56 UTC) #13
clamy
Thanks! I haven't reviewed the Blink code since I'm not familiar with it. A few ...
3 years, 11 months ago (2017-01-18 15:10:55 UTC) #14
engedy
https://codereview.chromium.org/2632633006/diff/20001/content/browser/frame_host/navigation_request.cc File content/browser/frame_host/navigation_request.cc (right): https://codereview.chromium.org/2632633006/diff/20001/content/browser/frame_host/navigation_request.cc#newcode584 content/browser/frame_host/navigation_request.cc:584: frame_tree_node_->SetFrameOwnerCollapsedState(true); On 2017/01/18 15:10:55, clamy wrote: > Suggestion: maybe ...
3 years, 11 months ago (2017-01-18 23:37:14 UTC) #15
nasko
I would've thought we can implement this as a network error code and we don't ...
3 years, 11 months ago (2017-01-19 00:11:46 UTC) #16
engedy
> I would've thought we can implement this as a network error code and we ...
3 years, 11 months ago (2017-01-19 01:02:07 UTC) #17
engedy
@Nasko, what do you think?
3 years, 11 months ago (2017-01-20 16:51:59 UTC) #22
nasko
On 2017/01/19 01:02:07, engedy wrote: > > I would've thought we can implement this as ...
3 years, 11 months ago (2017-01-20 23:34:27 UTC) #23
nasko
https://codereview.chromium.org/2632633006/diff/80001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/80001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode898 content/browser/frame_host/navigation_handle_impl_browsertest.cc:898: // frame. Why this change in comment? git cl ...
3 years, 11 months ago (2017-01-20 23:34:37 UTC) #24
engedy
> > 1.) Avoid sending an "FrameMsg_Uncollapse" on every navigation, > > Doesn't a successful ...
3 years, 11 months ago (2017-01-25 21:15:36 UTC) #25
nasko
On 2017/01/25 21:15:36, engedy wrote: > > > 1.) Avoid sending an "FrameMsg_Uncollapse" on every ...
3 years, 11 months ago (2017-01-26 01:26:44 UTC) #26
engedy
Agreed that this discussion is becoming difficult, I'll write up these alternatives in the design ...
3 years, 11 months ago (2017-01-26 09:45:26 UTC) #27
engedy
@Nasko, @Camille, please take another look. (Summary of off-line discussions below.) @Daniel, could you please ...
3 years, 10 months ago (2017-02-17 18:09:25 UTC) #33
clamy
Thanks! A few questions below. https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode812 content/browser/frame_host/navigation_handle_impl_browsertest.cc:812: "a.com", "/cross-site/baz.com/title2.html")); It's not ...
3 years, 10 months ago (2017-02-21 15:12:49 UTC) #38
engedy
https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode812 content/browser/frame_host/navigation_handle_impl_browsertest.cc:812: "a.com", "/cross-site/baz.com/title2.html")); On 2017/02/21 15:12:49, clamy wrote: > It's ...
3 years, 10 months ago (2017-02-22 13:14:58 UTC) #40
clamy
https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode812 content/browser/frame_host/navigation_handle_impl_browsertest.cc:812: "a.com", "/cross-site/baz.com/title2.html")); On 2017/02/22 13:14:58, engedy (slow) wrote: > ...
3 years, 10 months ago (2017-02-22 13:18:29 UTC) #42
engedy
https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode981 content/browser/frame_host/navigation_handle_impl_browsertest.cc:981: VerifyFormRequestContextType) { On 2017/02/22 13:18:29, clamy wrote: > On ...
3 years, 10 months ago (2017-02-22 14:34:06 UTC) #47
clamy
On 2017/02/22 14:34:06, engedy (slow) wrote: > https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc > File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): > > https://codereview.chromium.org/2632633006/diff/100001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode981 ...
3 years, 10 months ago (2017-02-22 16:09:55 UTC) #50
dcheng
Sorry for the slow review. Can you help me understand why we want to hide ...
3 years, 9 months ago (2017-02-28 05:36:23 UTC) #51
nasko
Mostly nits for the code in content/. https://codereview.chromium.org/2632633006/diff/140001/content/browser/frame_host/frame_tree_node.cc File content/browser/frame_host/frame_tree_node.cc (right): https://codereview.chromium.org/2632633006/diff/140001/content/browser/frame_host/frame_tree_node.cc#newcode269 content/browser/frame_host/frame_tree_node.cc:269: render_manager_.OnDidChangeCollapsedByClientState(collapsed); Does ...
3 years, 9 months ago (2017-03-01 20:08:05 UTC) #52
engedy
Addressed all comments, sorry for the delay. @Daniel, @Camille, could you please take another look? ...
3 years, 8 months ago (2017-04-10 14:36:42 UTC) #56
engedy
On 2017/02/28 05:36:23, dcheng wrote: > Sorry for the slow review. Can you help me ...
3 years, 8 months ago (2017-04-10 14:39:41 UTC) #57
engedy
+Charlie FYI.
3 years, 8 months ago (2017-04-10 14:49:12 UTC) #59
alexmos
Looks reasonable overall, just a few minor comments. I'll defer to Camille on PlzNavigate changes ...
3 years, 8 months ago (2017-04-11 06:00:30 UTC) #62
engedy
@Camille, @Daniel, could please take another look? https://codereview.chromium.org/2632633006/diff/180001/content/browser/frame_host/navigation_handle_impl.cc File content/browser/frame_host/navigation_handle_impl.cc (right): https://codereview.chromium.org/2632633006/diff/180001/content/browser/frame_host/navigation_handle_impl.cc#newcode359 content/browser/frame_host/navigation_handle_impl.cc:359: result == ...
3 years, 8 months ago (2017-04-11 08:06:17 UTC) #65
dcheng
https://codereview.chromium.org/2632633006/diff/260001/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp File third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp (right): https://codereview.chromium.org/2632633006/diff/260001/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp#newcode63 third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp:63: if (GetDocument().InStyleRecalc()) Can you help me understand why this ...
3 years, 8 months ago (2017-04-18 07:01:36 UTC) #76
engedy
@Camille, @Nasko, please take another look.
3 years, 8 months ago (2017-04-20 10:32:28 UTC) #77
engedy
https://codereview.chromium.org/2632633006/diff/260001/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp File third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp (right): https://codereview.chromium.org/2632633006/diff/260001/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp#newcode63 third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp:63: if (GetDocument().InStyleRecalc()) On 2017/04/18 07:01:36, dcheng (OOO through May ...
3 years, 8 months ago (2017-04-20 11:45:43 UTC) #78
nasko
Looks fine, I'll defer to clamy@ to ensure PlzNavigate bits are good. Few nits in ...
3 years, 8 months ago (2017-04-20 15:53:41 UTC) #79
clamy
Sorry I didn't have time to look at this today. Will go through it tomorrow.
3 years, 8 months ago (2017-04-20 17:04:06 UTC) #80
clamy
Thanks! It mostly looks good, a few comments below. https://codereview.chromium.org/2632633006/diff/260001/content/browser/frame_host/navigation_handle_impl.cc File content/browser/frame_host/navigation_handle_impl.cc (right): https://codereview.chromium.org/2632633006/diff/260001/content/browser/frame_host/navigation_handle_impl.cc#newcode697 content/browser/frame_host/navigation_handle_impl.cc:697: ...
3 years, 8 months ago (2017-04-24 13:15:19 UTC) #81
engedy
Addressed most comments, ask follow-up questions for others. @Nasko, @Camille, please take another look. https://codereview.chromium.org/2632633006/diff/260001/content/browser/frame_host/frame_tree_node.h ...
3 years, 7 months ago (2017-04-28 13:43:59 UTC) #87
engedy
+Charlie, I wired this up to the SubframeNavigationFilteringThrottle, please review that part, and optionally FYI ...
3 years, 7 months ago (2017-04-28 17:12:16 UTC) #97
Charlie Harrison
the filtering throttle code LGTM, I only briefly looked at the rest. https://codereview.chromium.org/2632633006/diff/370001/components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.cc File components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.cc ...
3 years, 7 months ago (2017-04-28 22:53:19 UTC) #100
engedy
@Nasko, @Daniel, @Camille: please see resolved comments and take another look. https://codereview.chromium.org/2632633006/diff/370001/components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.cc File components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.cc (left): ...
3 years, 7 months ago (2017-05-02 14:18:52 UTC) #101
nasko
content/ LGTM. I'd still say wait for clamy@'s stamp. https://codereview.chromium.org/2632633006/diff/140001/content/browser/frame_host/navigation_handle_impl_browsertest.cc File content/browser/frame_host/navigation_handle_impl_browsertest.cc (right): https://codereview.chromium.org/2632633006/diff/140001/content/browser/frame_host/navigation_handle_impl_browsertest.cc#newcode829 content/browser/frame_host/navigation_handle_impl_browsertest.cc:829: ...
3 years, 7 months ago (2017-05-03 16:58:31 UTC) #106
engedy
@Camille, @Daniel, please take a look. https://codereview.chromium.org/2632633006/diff/380001/content/browser/frame_host/render_frame_host_manager.cc File content/browser/frame_host/render_frame_host_manager.cc (right): https://codereview.chromium.org/2632633006/diff/380001/content/browser/frame_host/render_frame_host_manager.cc#newcode958 content/browser/frame_host/render_frame_host_manager.cc:958: // parent's SiteInstance ...
3 years, 7 months ago (2017-05-05 08:23:57 UTC) #107
clamy
Sorry I did not have time to review this before going ooo for a week, ...
3 years, 7 months ago (2017-05-05 15:02:00 UTC) #112
engedy
@Daniel, friendly ping. There is also one specific question for you above (search for `defensive` ...
3 years, 7 months ago (2017-05-09 09:17:42 UTC) #113
dcheng
Sorry for the review latency, feel free to ping more aggressively in the future. https://codereview.chromium.org/2632633006/diff/420001/components/subresource_filter/content/browser/subframe_navigation_filtering_throttle.h ...
3 years, 7 months ago (2017-05-10 06:59:46 UTC) #114
engedy
@Daniel, please take another look. @Camille, once you are back, and have some time, feel ...
3 years, 7 months ago (2017-05-15 13:35:52 UTC) #115
engedy
@Daniel, friendly ping.
3 years, 7 months ago (2017-05-18 09:22:08 UTC) #116
dcheng
LGTM https://codereview.chromium.org/2632633006/diff/420001/content/browser/frame_host/frame_tree_node.h File content/browser/frame_host/frame_tree_node.h (right): https://codereview.chromium.org/2632633006/diff/420001/content/browser/frame_host/frame_tree_node.h#newcode161 content/browser/frame_host/frame_tree_node.h:161: // called on sub-frames hosted in <frame>, <object>, ...
3 years, 7 months ago (2017-05-18 09:35:55 UTC) #117
engedy
Thanks for the reviews, everyone! https://codereview.chromium.org/2632633006/diff/420001/content/browser/frame_host/frame_tree_node.h File content/browser/frame_host/frame_tree_node.h (right): https://codereview.chromium.org/2632633006/diff/420001/content/browser/frame_host/frame_tree_node.h#newcode161 content/browser/frame_host/frame_tree_node.h:161: // called on sub-frames ...
3 years, 7 months ago (2017-05-18 09:40:06 UTC) #118
engedy
@Alex, Camille --> to CC. All right, here we go. Let's see if it still ...
3 years, 7 months ago (2017-05-22 18:23:18 UTC) #120
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/2632633006/460001
3 years, 7 months ago (2017-05-22 18:24:15 UTC) #123
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/443962)
3 years, 7 months ago (2017-05-22 18:35:39 UTC) #125
engedy
@Bernhard, could you please take a quick look at: chrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle.cc
3 years, 7 months ago (2017-05-22 18:40:30 UTC) #127
Bernhard Bauer
lgtm
3 years, 7 months ago (2017-05-23 08:54:34 UTC) #128
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/2632633006/460001
3 years, 7 months ago (2017-05-23 12:14:51 UTC) #132
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/462078)
3 years, 7 months ago (2017-05-23 15:15:29 UTC) #134
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/2632633006/480001
3 years, 7 months ago (2017-05-24 22:02:30 UTC) #140
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/464010)
3 years, 7 months ago (2017-05-25 02:40:58 UTC) #142
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/2632633006/500001
3 years, 7 months ago (2017-05-25 17:05:15 UTC) #145
commit-bot: I haz the power
Committed patchset #26 (id:500001) as https://chromium.googlesource.com/chromium/src/+/6e2e0996275dd48dd4497f9c57e6370a423eb3ec
3 years, 7 months ago (2017-05-25 18:59:27 UTC) #149
Charlie Harrison
3 years, 7 months ago (2017-05-25 19:01:20 UTC) #150
Message was sent while issue was closed.
On 2017/05/25 18:59:27, commit-bot: I haz the power wrote:
> Committed patchset #26 (id:500001) as
>
https://chromium.googlesource.com/chromium/src/+/6e2e0996275dd48dd4497f9c57e6...

\o/!

Powered by Google App Engine
This is Rietveld 408576698