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

Issue 1269813002: Add a NavigationThrottle to the public content/ interface (Closed)

Created:
5 years, 4 months ago by clamy
Modified:
5 years, 1 month ago
CC:
chromium-reviews, jam, nasko+codewatch_chromium.org, creis+watch_chromium.org, darin-cc_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@navigation-api
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add a NavigationThrottle to the public content/ interface This CL adds a NavigationThrottle class to the public content/ interface. A NavigationThrottle is used to control the flow of navigations. It lives entirely on the UI thread. Eventually, all components that want the functionality of a ResourceThrottle for navigations should transition to a NavigationThrottle: the new architecture for navigations (browser-side navigation) will not support ResourceThrottles for main resources load. See https://docs.google.com/document/d/1ICLLQoC9EsZ-bWH4ZKRhPCIoZKn6pOj02SlGl6SKH6Y/edit?pli=1#heading=h.fmxjmgvbgg7x for the design doc. This Cl also transition the InterceptNavigationresourceThrottle to the Navigationthrottle model. BUG=504347 Committed: https://crrev.com/394057986ff5d00a841a976f3bd8d599603acaa1 Cr-Commit-Position: refs/heads/master@{#350092}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Total comments: 116

Patch Set 6 : Unit tests support #

Patch Set 7 : Now properly using the factories #

Total comments: 2

Patch Set 8 : Addressed comments #

Total comments: 35

Patch Set 9 : Rebase #

Patch Set 10 : Addressed comments #

Total comments: 53

Patch Set 11 : Rebase #

Total comments: 23

Patch Set 12 : Addressed comments #

Total comments: 4

Patch Set 13 : Removed TestNavigationHandle + pointer to WebContents #

Total comments: 23

Patch Set 14 : Addressed comments #

Total comments: 4

Patch Set 15 : Rebase + addressed comments #

Patch Set 16 : Fixed compilation error on Android #

Patch Set 17 : Rebase + android_webview + Linux compilation error #

Patch Set 18 : Rebase on https://codereview.chromium.org/1312213010/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1025 lines, -820 lines) Patch
M android_webview/browser/aw_content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/aw_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +19 lines, -0 lines 0 comments Download
M android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +0 lines, -8 lines 0 comments Download
M chrome/browser/apps/app_url_redirector.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +10 lines, -12 lines 0 comments Download
M chrome/browser/apps/app_url_redirector.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +31 lines, -38 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 4 chunks +32 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -19 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M components/navigation_interception.gypi View 1 1 chunk +2 lines, -2 lines 0 comments Download
M components/navigation_interception/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +3 lines, -3 lines 0 comments Download
M components/navigation_interception/intercept_navigation_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +8 lines, -8 lines 0 comments Download
M components/navigation_interception/intercept_navigation_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +8 lines, -5 lines 0 comments Download
D components/navigation_interception/intercept_navigation_resource_throttle.h View 1 chunk +0 lines, -63 lines 0 comments Download
D components/navigation_interception/intercept_navigation_resource_throttle.cc View 1 chunk +0 lines, -146 lines 0 comments Download
D components/navigation_interception/intercept_navigation_resource_throttle_unittest.cc View 1 2 3 4 5 1 chunk +0 lines, -481 lines 0 comments Download
A components/navigation_interception/intercept_navigation_throttle.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +51 lines, -0 lines 0 comments Download
A components/navigation_interception/intercept_navigation_throttle.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +49 lines, -0 lines 0 comments Download
A components/navigation_interception/intercept_navigation_throttle_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +165 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigation_handle_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 6 chunks +57 lines, -10 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 5 chunks +131 lines, -10 lines 0 comments Download
M content/browser/frame_host/navigation_request.h View 2 3 4 5 6 7 8 9 1 chunk +3 lines, -1 line 0 comments Download
M content/browser/frame_host/navigation_request.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +31 lines, -4 lines 0 comments Download
M content/browser/frame_host/navigator_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M content/browser/frame_host/render_frame_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -1 line 0 comments Download
A content/browser/loader/navigation_resource_throttle.h View 1 2 1 chunk +44 lines, -0 lines 0 comments Download
A content/browser/loader/navigation_resource_throttle.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +154 lines, -0 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +11 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +5 lines, -0 lines 0 comments Download
M content/public/browser/content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +10 lines, -0 lines 0 comments Download
M content/public/browser/content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +6 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 2 chunks +84 lines, -7 lines 0 comments Download
A content/public/browser/navigation_handle.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +30 lines, -0 lines 0 comments Download
A content/public/browser/navigation_throttle.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +43 lines, -0 lines 0 comments Download
A content/public/browser/navigation_throttle.cc View 1 2 3 1 chunk +23 lines, -0 lines 0 comments Download
M content/test/web_contents_observer_sanity_checker.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 78 (21 generated)
clamy
@nasko, davidben: PTAL @carlosk, fdegans: FYI This is a first version of the NavigationThrottle patch, ...
5 years, 3 months ago (2015-08-26 15:35:44 UTC) #2
carlosk
Thanks for continuing these navigation changes. https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (left): https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/apps/app_url_redirector.cc#oldcode40 chrome/browser/apps/app_url_redirector.cc:40: DCHECK_CURRENTLY_ON(BrowserThread::UI); Can this ...
5 years, 3 months ago (2015-08-28 16:40:25 UTC) #3
nasko
Super excited about this! Lots of comments initially, but it actually is in a pretty ...
5 years, 3 months ago (2015-08-31 23:25:16 UTC) #4
nasko
Actually adding avi@ : ).
5 years, 3 months ago (2015-08-31 23:25:33 UTC) #6
Avi (use Gerrit)
https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/chrome_content_browser_client.cc File chrome/browser/chrome_content_browser_client.cc (right): https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/chrome_content_browser_client.cc#newcode2573 chrome/browser/chrome_content_browser_client.cc:2573: } Do we really want to do this for ...
5 years, 3 months ago (2015-09-01 16:38:47 UTC) #7
davidben
Some comments from a first pass. https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (right): https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/apps/app_url_redirector.cc#newcode12 chrome/browser/apps/app_url_redirector.cc:12: #include "chrome/browser/profiles/profile_io_data.h" No ...
5 years, 3 months ago (2015-09-01 21:55:18 UTC) #8
nasko
Responding to avi@'s question. https://codereview.chromium.org/1269813002/diff/80001/content/browser/frame_host/navigation_handle_impl.cc File content/browser/frame_host/navigation_handle_impl.cc (right): https://codereview.chromium.org/1269813002/diff/80001/content/browser/frame_host/navigation_handle_impl.cc#newcode57 content/browser/frame_host/navigation_handle_impl.cc:57: DCHECK(state_ != DID_START) On 2015/09/01 ...
5 years, 3 months ago (2015-09-01 22:08:12 UTC) #9
clamy
Thanks! PTAL at the new version, which includes unit test support. https://codereview.chromium.org/1269813002/diff/80001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (left): ...
5 years, 3 months ago (2015-09-03 15:30:52 UTC) #10
nasko
I haven't done a full pass quite yet, but I wonder why the interface change ...
5 years, 3 months ago (2015-09-04 00:01:53 UTC) #11
clamy
Thanks! I've explained the reason for switching from scoped_ptrs to raw ptrs in teh specific ...
5 years, 3 months ago (2015-09-04 12:59:14 UTC) #12
nasko
https://codereview.chromium.org/1269813002/diff/80001/content/browser/frame_host/navigation_handle_impl.cc File content/browser/frame_host/navigation_handle_impl.cc (right): https://codereview.chromium.org/1269813002/diff/80001/content/browser/frame_host/navigation_handle_impl.cc#newcode57 content/browser/frame_host/navigation_handle_impl.cc:57: DCHECK(state_ != DID_START) On 2015/09/03 15:30:51, clamy wrote: > ...
5 years, 3 months ago (2015-09-04 23:36:49 UTC) #13
clamy
Thanks! https://codereview.chromium.org/1269813002/diff/140001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (right): https://codereview.chromium.org/1269813002/diff/140001/chrome/browser/apps/app_url_redirector.cc#newcode68 chrome/browser/apps/app_url_redirector.cc:68: content::NavigationThrottle* AppUrlRedirector::MaybeCreateThrottleFor( On 2015/09/04 23:36:49, nasko (out until ...
5 years, 3 months ago (2015-09-08 16:27:19 UTC) #14
clamy
+creis: PTAL
5 years, 3 months ago (2015-09-09 17:52:16 UTC) #16
Charlie Reis
I haven't made it through a full review yet, but here are some initial questions/comments, ...
5 years, 3 months ago (2015-09-11 00:06:49 UTC) #17
clamy
Thanks! I've answered some of the questions, will wait for the rest of the review ...
5 years, 3 months ago (2015-09-11 13:30:44 UTC) #18
nasko
https://codereview.chromium.org/1269813002/diff/180001/components/navigation_interception/intercept_navigation_delegate.cc File components/navigation_interception/intercept_navigation_delegate.cc (right): https://codereview.chromium.org/1269813002/diff/180001/components/navigation_interception/intercept_navigation_delegate.cc#newcode89 components/navigation_interception/intercept_navigation_delegate.cc:89: content::WebContents* web_contents) { Isn't the web_contents parameter dropped on ...
5 years, 3 months ago (2015-09-14 22:00:04 UTC) #19
clamy
Thanks! A few answers on the WebContents and NavigationHandleImpl. https://codereview.chromium.org/1269813002/diff/180001/content/browser/frame_host/navigation_handle_impl.h File content/browser/frame_host/navigation_handle_impl.h (right): https://codereview.chromium.org/1269813002/diff/180001/content/browser/frame_host/navigation_handle_impl.h#newcode88 content/browser/frame_host/navigation_handle_impl.h:88: ...
5 years, 3 months ago (2015-09-14 22:12:10 UTC) #20
nasko
On 2015/09/14 22:12:10, clamy wrote: > Thanks! A few answers on the WebContents and NavigationHandleImpl. ...
5 years, 3 months ago (2015-09-14 22:52:03 UTC) #21
Charlie Reis
Thanks. Here's some comments and questions on the rest, in addition to my previous ones. ...
5 years, 3 months ago (2015-09-16 00:09:25 UTC) #22
clamy
Thanks! https://codereview.chromium.org/1269813002/diff/180001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (left): https://codereview.chromium.org/1269813002/diff/180001/chrome/browser/apps/app_url_redirector.cc#oldcode40 chrome/browser/apps/app_url_redirector.cc:40: DCHECK_CURRENTLY_ON(BrowserThread::UI); On 2015/09/11 13:30:43, clamy wrote: > On ...
5 years, 3 months ago (2015-09-16 01:03:22 UTC) #23
Charlie Reis
Thanks for all the updates! A little more discussion on the test infrastructure below. (I ...
5 years, 3 months ago (2015-09-16 17:39:27 UTC) #25
nasko
I think the core of the CL looks good, but I concur with Charlie that ...
5 years, 3 months ago (2015-09-16 20:33:39 UTC) #26
Charlie Reis
https://codereview.chromium.org/1269813002/diff/220001/content/browser/frame_host/navigation_handle_impl.h File content/browser/frame_host/navigation_handle_impl.h (right): https://codereview.chromium.org/1269813002/diff/220001/content/browser/frame_host/navigation_handle_impl.h#newcode161 content/browser/frame_host/navigation_handle_impl.h:161: // methods). On 2015/09/16 20:33:39, nasko (slow to review) ...
5 years, 3 months ago (2015-09-16 20:46:08 UTC) #27
clamy
I am wondering if we could avoid that by exposing a GetDelegate method in the ...
5 years, 3 months ago (2015-09-16 20:51:41 UTC) #28
Charlie Reis
On 2015/09/16 20:51:41, clamy wrote: > I am wondering if we could avoid that by ...
5 years, 3 months ago (2015-09-16 21:15:37 UTC) #29
nasko
On 2015/09/16 21:15:37, Charlie Reis wrote: > On 2015/09/16 20:51:41, clamy wrote: > > I ...
5 years, 3 months ago (2015-09-16 21:24:26 UTC) #30
clamy
Thanks! I have added specific testing methods to NavigationHandle and removed the pointer to the ...
5 years, 3 months ago (2015-09-17 01:18:34 UTC) #31
nasko
I think it looks good. I'd like to get confirmation from Charlie and Nick though. ...
5 years, 3 months ago (2015-09-17 21:10:25 UTC) #32
Charlie Reis
Great. Mostly nits at this point, but two concerns I noticed about races and repeated ...
5 years, 3 months ago (2015-09-18 05:40:02 UTC) #33
clamy
Thanks! https://codereview.chromium.org/1269813002/diff/240001/content/browser/frame_host/navigation_handle_impl.cc File content/browser/frame_host/navigation_handle_impl.cc (right): https://codereview.chromium.org/1269813002/diff/240001/content/browser/frame_host/navigation_handle_impl.cc#newcode53 content/browser/frame_host/navigation_handle_impl.cc:53: << "This accessor should not be called before ...
5 years, 3 months ago (2015-09-18 17:35:39 UTC) #34
nasko
https://codereview.chromium.org/1269813002/diff/240001/content/browser/loader/navigation_resource_throttle.cc File content/browser/loader/navigation_resource_throttle.cc (right): https://codereview.chromium.org/1269813002/diff/240001/content/browser/loader/navigation_resource_throttle.cc#newcode100 content/browser/loader/navigation_resource_throttle.cc:100: BrowserThread::PostTask( On 2015/09/18 17:35:39, clamy wrote: > On 2015/09/18 ...
5 years, 3 months ago (2015-09-18 17:58:19 UTC) #35
Charlie Reis
Thanks! LGTM. https://codereview.chromium.org/1269813002/diff/240001/content/browser/loader/navigation_resource_throttle.cc File content/browser/loader/navigation_resource_throttle.cc (right): https://codereview.chromium.org/1269813002/diff/240001/content/browser/loader/navigation_resource_throttle.cc#newcode64 content/browser/loader/navigation_resource_throttle.cc:64: render_frame_host->navigation_handle(); On 2015/09/18 17:35:39, clamy wrote: > ...
5 years, 3 months ago (2015-09-18 17:58:39 UTC) #36
clamy
Thanks! @asargent: PTAL at the changes in chrome/browser/apps. @sky: PTAL at the changes in chrome/browser/renderer_host ...
5 years, 3 months ago (2015-09-18 18:21:23 UTC) #38
mnaganov (inactive)
components/navigation_interception/ LGTM
5 years, 3 months ago (2015-09-18 18:29:53 UTC) #39
asargent_no_longer_on_chrome
chrome/browser/apps lgtm with one question mostly for my own education https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (right): https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/apps/app_url_redirector.cc#newcode82 ...
5 years, 3 months ago (2015-09-18 19:47:38 UTC) #40
sky
https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc File chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc (left): https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc#oldcode357 chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc:357: AppUrlRedirector::MaybeCreateThrottleFor(request, io_data); Where is the non-android code moving to?
5 years, 3 months ago (2015-09-18 20:24:57 UTC) #41
clamy
https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/apps/app_url_redirector.cc File chrome/browser/apps/app_url_redirector.cc (right): https://codereview.chromium.org/1269813002/diff/260001/chrome/browser/apps/app_url_redirector.cc#newcode82 chrome/browser/apps/app_url_redirector.cc:82: if (handle->IsPost()) { On 2015/09/18 19:47:38, Antony Sargent wrote: ...
5 years, 3 months ago (2015-09-18 20:40:20 UTC) #42
sky
LGTM
5 years, 3 months ago (2015-09-18 20:49:47 UTC) #43
clamy
Thanks! https://codereview.chromium.org/1269813002/diff/240001/content/public/browser/navigation_handle.h File content/public/browser/navigation_handle.h (right): https://codereview.chromium.org/1269813002/diff/240001/content/public/browser/navigation_handle.h#newcode81 content/public/browser/navigation_handle.h:81: On 2015/09/18 17:58:39, Charlie Reis wrote: > On ...
5 years, 3 months ago (2015-09-18 21:58:47 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/300001
5 years, 3 months ago (2015-09-18 22:00:19 UTC) #48
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_android on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_android/builds/56245) linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, ...
5 years, 3 months ago (2015-09-18 22:17:26 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/320001
5 years, 3 months ago (2015-09-18 23:26:42 UTC) #53
commit-bot: I haz the power
Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_compile_dbg/builds/62348) linux_chromium_gn_dbg on tryserver.chromium.linux (JOB_FAILED, ...
5 years, 3 months ago (2015-09-18 23:42:13 UTC) #55
clamy
@mnaganov: I had to modify some Android webview code. Is it still good for you?
5 years, 3 months ago (2015-09-21 18:49:36 UTC) #56
mnaganov (inactive)
On 2015/09/21 18:49:36, clamy wrote: > @mnaganov: I had to modify some Android webview code. ...
5 years, 3 months ago (2015-09-21 19:19:56 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/340001
5 years, 3 months ago (2015-09-21 19:59:14 UTC) #60
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_ng/builds/106792)
5 years, 3 months ago (2015-09-21 21:02:05 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/340001
5 years, 3 months ago (2015-09-21 22:07:23 UTC) #64
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/102236) linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, ...
5 years, 3 months ago (2015-09-21 22:13:54 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/350001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/350001
5 years, 3 months ago (2015-09-21 23:37:24 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/110334)
5 years, 3 months ago (2015-09-22 00:34:51 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269813002/350001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269813002/350001
5 years, 3 months ago (2015-09-22 00:40:01 UTC) #73
commit-bot: I haz the power
Committed patchset #18 (id:350001)
5 years, 3 months ago (2015-09-22 02:19:02 UTC) #74
commit-bot: I haz the power
Patchset 18 (id:??) landed as https://crrev.com/394057986ff5d00a841a976f3bd8d599603acaa1 Cr-Commit-Position: refs/heads/master@{#350092}
5 years, 3 months ago (2015-09-22 02:19:45 UTC) #75
huangs
A revert of this CL (patchset #18 id:350001) has been created in https://codereview.chromium.org/1350913008/ by huangs@chromium.org. ...
5 years, 3 months ago (2015-09-22 14:49:21 UTC) #76
huangs
Confirmed: Recent browser tests on linux_chromium_chromeos_rel_ng consistently suffer from FATAL:process_manager.cc(749)] Check failed: count > 0 ...
5 years, 3 months ago (2015-09-22 15:28:46 UTC) #77
huangs
5 years, 3 months ago (2015-09-22 15:29:09 UTC) #78
Message was sent while issue was closed.
Reverting.

Powered by Google App Engine
This is Rietveld 408576698