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

Issue 10546083: Convert ProtocolHandlerRegistry to be a ProfileKeyedService. (Closed)

Created:
8 years, 6 months ago by Steve McKay
Modified:
5 years, 10 months ago
CC:
chromium-reviews, dhollowa+watch_chromium.org
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Convert ProtocolHandlerRegistry to be a ProfileKeyedService. BUG=129200 TEST=protocol_handler_registry_browsertest.cc,protocol_handler_registry_unittest.cc willchan@ -> profile_io changes +bauerb -> content_settings changes Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=147597 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=147745

Patch Set 1 : Update ProtocolHandlerRegistry to be a ProfileKeyedService in lieu of a refcounted pointer. #

Total comments: 23

Patch Set 2 : Respond to review comments. Fit and finish. #

Total comments: 2

Patch Set 3 : Move eager initialization into factory...but disable for discussion. #

Patch Set 4 : Don't do inline definition of private classes. #

Patch Set 5 : Update test to...pass. #

Patch Set 6 : Allow the PHR insntance in incognito mode. #

Patch Set 7 : Don't create PHR instances via TestProfile. #

Total comments: 10

Patch Set 8 : Respond to Elliot's comments. #

Total comments: 8

Patch Set 9 : Fix merge issue in PHR test. #

Patch Set 10 : Fix merge issue (correctly) in PHR test. #

Total comments: 10

Patch Set 11 : Respond to Will's comments. #

Total comments: 15

Patch Set 12 : Respond to Will's comments. #

Patch Set 13 : Respond to review comments. Update tests with simplified threading setup. #

Patch Set 14 : Add gtest header. Use RunAllPending for thread coordination. #

Patch Set 15 : Reduce differences between orig and updated test. Trying to figure out why tests fail on try server… #

Total comments: 2

Patch Set 16 : Use a single MessageLoop for all threads. #

Patch Set 17 : Don't declare the virtual MessageLoop::IsType method inline. #

Patch Set 18 : Fix windows compilation error in PHR unittest. #

Patch Set 19 : Merge in MessageLoop conflict from upstream. #

Total comments: 1

Patch Set 20 : Merge with upstream. #

Total comments: 13

Patch Set 21 : Respond to jhawkins' comments. #

Total comments: 2

Patch Set 22 : Respond to Ben's comments. #

Patch Set 23 : Update content_setting_bubble_model tests to use injected ProtocolHandlerRegistry (integrating Greg… #

Total comments: 6

Patch Set 24 : Respond to Greg's comments. #

Patch Set 25 : Add missing include. #

Total comments: 1

Patch Set 26 : Nuke unused ContentSettingRPHBubbleModel constructor. #

Patch Set 27 : Add deps for chromeos build. #

Patch Set 28 : Remove NOTREACHED check from testing_profile GetProtocolHandler method. #

Patch Set 29 : Refactor chromeos defaults installation to make testing predictable. #

Patch Set 30 : Minor docu-changes. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+586 lines, -361 lines) Patch
M base/message_loop.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +4 lines, -0 lines 0 comments Download
M base/message_loop.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +4 lines, -0 lines 0 comments Download
M base/message_loop_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +7 lines, -0 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry.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 25 26 27 28 29 11 chunks +34 lines, -40 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry.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 26 27 28 29 17 chunks +208 lines, -64 lines 0 comments Download
A chrome/browser/custom_handlers/protocol_handler_registry_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +47 lines, -0 lines 0 comments Download
A chrome/browser/custom_handlers/protocol_handler_registry_factory.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 26 27 28 1 chunk +67 lines, -0 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry_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 26 27 28 29 14 chunks +138 lines, -94 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/profiles/off_the_record_profile_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +0 lines, -4 lines 0 comments Download
M chrome/browser/profiles/profile.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +1 line, -4 lines 0 comments Download
M chrome/browser/profiles/profile_dependency_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 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/profiles/profile_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 3 chunks +0 lines, -9 lines 0 comments Download
M chrome/browser/profiles/profile_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 +6 lines, -33 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +8 lines, -1 line 0 comments Download
M chrome/browser/profiles/profile_io_data.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 4 chunks +14 lines, -40 lines 0 comments Download
M chrome/browser/tab_contents/render_view_context_menu.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/content_settings/content_setting_bubble_model.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 25 3 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/content_settings/content_setting_bubble_model.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 5 chunks +13 lines, -13 lines 0 comments Download
M chrome/browser/ui/content_settings/content_setting_bubble_model_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 4 chunks +23 lines, -30 lines 0 comments Download
M chrome/chrome_browser.gypi 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 26 27 28 29 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/test/base/testing_profile.h 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 +0 lines, -13 lines 0 comments Download
M chrome/test/base/testing_profile.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 26 27 28 29 2 chunks +1 line, -11 lines 0 comments Download
M net/url_request/url_request.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 64 (0 generated)
Steve McKay
Sending off to the try server. I think things are working correctly now provided everyone ...
8 years, 6 months ago (2012-06-09 01:03:38 UTC) #1
James Hawkins
High-level review comments: * I think this CL needs to be cut down; it feels ...
8 years, 6 months ago (2012-06-10 22:57:51 UTC) #2
Peter Kasting
Drive-by. Destroying a PKS on the IO thread sounds scary to me. You may want ...
8 years, 6 months ago (2012-06-11 00:41:26 UTC) #3
Elliot Glaysher
I shouldn't comment on the threading issues, but here are some points on your service: ...
8 years, 6 months ago (2012-06-11 19:43:16 UTC) #4
willchan no longer on Chromium
https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode589 chrome/browser/custom_handlers/protocol_handler_registry.cc:589: DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); I think this class is used on both ...
8 years, 6 months ago (2012-06-11 21:17:22 UTC) #5
Steve McKay
Okay. Still trying to figure out if there's a threading issue. There are no immediate ...
8 years, 6 months ago (2012-06-11 22:09:38 UTC) #6
Peter Kasting
https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc File chrome/browser/custom_handlers/protocol_handler_registry_factory.cc (right): https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc#newcode21 chrome/browser/custom_handlers/protocol_handler_registry_factory.cc:21: On 2012/06/11 22:09:38, smckay1 wrote: > On 2012/06/11 00:41:26, ...
8 years, 6 months ago (2012-06-12 00:31:37 UTC) #7
willchan no longer on Chromium
https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode589 chrome/browser/custom_handlers/protocol_handler_registry.cc:589: DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); On 2012/06/11 22:09:38, smckay1 wrote: > On 2012/06/11 ...
8 years, 6 months ago (2012-06-12 02:09:56 UTC) #8
Steve McKay
Talked with Ben about this a bit offline (well, off review). General consensus (I believe) ...
8 years, 6 months ago (2012-06-13 23:40:53 UTC) #9
Steve McKay
Okay. Most try bots are happy with this patch (excluding win_rel, which I'll retry in ...
8 years, 6 months ago (2012-06-14 04:05:04 UTC) #10
Elliot Glaysher
If you really need early initialization (I hope that you don't), you can always override ...
8 years, 6 months ago (2012-06-14 21:32:01 UTC) #11
smckay
On 2012/06/14 21:32:01, Elliot Glaysher wrote: > If you really need early initialization (I hope ...
8 years, 6 months ago (2012-06-14 21:55:43 UTC) #12
Steve McKay
https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc File chrome/browser/custom_handlers/protocol_handler_registry_factory.cc (right): https://chromiumcodereview.appspot.com/10546083/diff/2001/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc#newcode21 chrome/browser/custom_handlers/protocol_handler_registry_factory.cc:21: On 2012/06/12 00:31:37, Peter Kasting wrote: > On 2012/06/11 ...
8 years, 6 months ago (2012-06-14 22:06:23 UTC) #13
benwells
The registry needs to be loaded at initialization time, in case (for example) mailto: is ...
8 years, 6 months ago (2012-06-18 04:27:50 UTC) #14
smckay
Thanks for the pointer to OpenTabsInBrowser. I think that particular case fits nicely with the ...
8 years, 6 months ago (2012-06-18 22:23:29 UTC) #15
Steve McKay
I should probably provide a little background on the "Core" changes. I talked with Will ...
8 years, 6 months ago (2012-06-18 22:41:08 UTC) #16
Steve McKay
Test are still broken. I'll ping once a new patch is uploaded.
8 years, 6 months ago (2012-06-19 00:59:55 UTC) #17
Steve McKay
Okay, reviewers, please dive in. After a lot of learning and some occasional beating of ...
8 years, 6 months ago (2012-06-22 17:10:11 UTC) #18
Elliot Glaysher
http://codereview.chromium.org/10546083/diff/48002/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc File chrome/browser/custom_handlers/protocol_handler_registry_factory.cc (right): http://codereview.chromium.org/10546083/diff/48002/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc#newcode21 chrome/browser/custom_handlers/protocol_handler_registry_factory.cc:21: Please don't do this. One line of whitespace between ...
8 years, 6 months ago (2012-06-22 17:32:48 UTC) #19
Steve McKay
Responded to Elliot's comments. PTAL. http://codereview.chromium.org/10546083/diff/48002/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc File chrome/browser/custom_handlers/protocol_handler_registry_factory.cc (right): http://codereview.chromium.org/10546083/diff/48002/chrome/browser/custom_handlers/protocol_handler_registry_factory.cc#newcode21 chrome/browser/custom_handlers/protocol_handler_registry_factory.cc:21: On 2012/06/22 17:32:48, Elliot ...
8 years, 6 months ago (2012-06-22 18:01:58 UTC) #20
willchan no longer on Chromium
I need to read the protocol handler registry core stuff in detail. I'll submit more ...
8 years, 6 months ago (2012-06-22 19:01:56 UTC) #21
willchan no longer on Chromium
http://codereview.chromium.org/10546083/diff/52002/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/52002/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode62 chrome/browser/custom_handlers/protocol_handler_registry.cc:62: // only chromeos has default protocol handlers at this ...
8 years, 6 months ago (2012-06-22 23:15:44 UTC) #22
benwells
http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode200 chrome/browser/custom_handlers/protocol_handler_registry.cc:200: // on the C instance. I dont understand this ...
8 years, 6 months ago (2012-06-22 23:31:27 UTC) #23
smckay
Thanks for the review. New patch uploaded. PTAL. http://codereview.chromium.org/10546083/diff/52002/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/52002/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode62 chrome/browser/custom_handlers/protocol_handler_registry.cc:62: // ...
8 years, 6 months ago (2012-06-22 23:44:30 UTC) #24
Steve McKay
PTAL. http://codereview.chromium.org/10546083/diff/47002/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/47002/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode86 chrome/browser/custom_handlers/protocol_handler_registry.cc:86: On 2012/06/22 19:01:56, willchan wrote: > -whitespace Done. ...
8 years, 5 months ago (2012-06-27 21:49:28 UTC) #25
Steve McKay
Responding to Ben's comments. http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode200 chrome/browser/custom_handlers/protocol_handler_registry.cc:200: // on the C instance. ...
8 years, 5 months ago (2012-06-27 21:56:45 UTC) #26
Steve McKay
TestOSRegistration is failing on the try servers (mac and linux), but passing locally. Unclear why ...
8 years, 5 months ago (2012-06-27 23:14:05 UTC) #27
Steve McKay
On 2012/06/27 23:14:05, smckay1 wrote: > TestOSRegistration is failing on the try servers (mac and ...
8 years, 5 months ago (2012-06-28 01:07:05 UTC) #28
benwells
http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/70001/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode393 chrome/browser/custom_handlers/protocol_handler_registry.cc:393: default_handlers_.erase(scheme); On 2012/06/27 21:56:45, smckay1 wrote: > On 2012/06/22 ...
8 years, 5 months ago (2012-06-28 08:15:46 UTC) #29
Steve McKay
Okay. Here's what I did. I updated the test to use a single MessageLoop instance ...
8 years, 5 months ago (2012-06-28 23:05:58 UTC) #30
willchan no longer on Chromium
Sorry, I don't have time to finish this review. I looked at the profiles/ stuff ...
8 years, 5 months ago (2012-06-29 21:59:50 UTC) #31
Steve McKay
On 2012/06/29 21:59:50, willchan wrote: > Sorry, I don't have time to finish this review. ...
8 years, 5 months ago (2012-06-29 23:18:50 UTC) #32
Steve McKay
Hi folks, I'm back from vacation. Merged and put this on the try server. Looks ...
8 years, 5 months ago (2012-07-16 21:49:25 UTC) #33
Elliot Glaysher
profiles lgtm
8 years, 5 months ago (2012-07-16 22:05:38 UTC) #34
James Hawkins
LGTM with nits. http://codereview.chromium.org/10546083/diff/111004/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/111004/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode87 chrome/browser/custom_handlers/protocol_handler_registry.cc:87: explicit Core(bool enabled); nit: Document |enabled|. ...
8 years, 5 months ago (2012-07-17 00:45:28 UTC) #35
Steve McKay
PTAL. http://codereview.chromium.org/10546083/diff/111004/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): http://codereview.chromium.org/10546083/diff/111004/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode87 chrome/browser/custom_handlers/protocol_handler_registry.cc:87: explicit Core(bool enabled); On 2012/07/17 00:45:28, James Hawkins ...
8 years, 5 months ago (2012-07-17 01:12:41 UTC) #36
Peter Kasting
I'm listed on the reviewers line but I don't see anything telling me to review ...
8 years, 5 months ago (2012-07-17 01:39:17 UTC) #37
benwells
lgtm with nit http://codereview.chromium.org/10546083/diff/113004/chrome/browser/custom_handlers/protocol_handler_registry.h File chrome/browser/custom_handlers/protocol_handler_registry.h (right): http://codereview.chromium.org/10546083/diff/113004/chrome/browser/custom_handlers/protocol_handler_registry.h#newcode69 chrome/browser/custom_handlers/protocol_handler_registry.h:69: // updated. Nit: remove this TODO ...
8 years, 5 months ago (2012-07-17 01:50:20 UTC) #38
Steve McKay
Done. I think we're good to commit now WRT owner approvals. http://codereview.chromium.org/10546083/diff/113004/chrome/browser/custom_handlers/protocol_handler_registry.h File chrome/browser/custom_handlers/protocol_handler_registry.h (right): ...
8 years, 5 months ago (2012-07-17 16:56:15 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/116006
8 years, 5 months ago (2012-07-17 23:16:18 UTC) #40
commit-bot: I haz the power
Failed to apply patch for chrome/browser/profiles/profile_impl.h: While running patch -p1 --forward --force; patching file chrome/browser/profiles/profile_impl.h ...
8 years, 5 months ago (2012-07-17 23:16:22 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/116006
8 years, 5 months ago (2012-07-17 23:50:40 UTC) #42
commit-bot: I haz the power
Failed to apply patch for chrome/browser/profiles/profile_impl.h: While running patch -p1 --forward --force; patching file chrome/browser/profiles/profile_impl.h ...
8 years, 5 months ago (2012-07-17 23:50:48 UTC) #43
smckay
NOTE: Change https://chromiumcodereview.appspot.com/10584042 introduced an incompatible change necessitating some refactoring to supporting use of ProtocolHandlerRegistry ...
8 years, 5 months ago (2012-07-18 18:05:54 UTC) #44
Steve McKay
Okay. Integrated Greg's changes and updated the content_setting bubble tests. No substantial changes outside of ...
8 years, 5 months ago (2012-07-19 01:40:12 UTC) #45
Greg Billock
http://codereview.chromium.org/10546083/diff/123001/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc File chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc (right): http://codereview.chromium.org/10546083/diff/123001/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc#newcode306 chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc:306: void SetUpRegistry(bool initilize) { spelling http://codereview.chromium.org/10546083/diff/123001/chrome/browser/ui/content_settings/content_setting_bubble_model.cc File chrome/browser/ui/content_settings/content_setting_bubble_model.cc (right): ...
8 years, 5 months ago (2012-07-19 14:49:57 UTC) #46
Steve McKay
PTAL, Greg. http://codereview.chromium.org/10546083/diff/123001/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc File chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc (right): http://codereview.chromium.org/10546083/diff/123001/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc#newcode306 chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc:306: void SetUpRegistry(bool initilize) { On 2012/07/19 14:49:57, ...
8 years, 5 months ago (2012-07-19 16:59:54 UTC) #47
Greg Billock
On 2012/07/19 16:59:54, Steve McKay wrote: > PTAL, Greg. > > http://codereview.chromium.org/10546083/diff/123001/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc > File chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc ...
8 years, 5 months ago (2012-07-19 20:31:00 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/134005
8 years, 5 months ago (2012-07-19 20:36:08 UTC) #49
commit-bot: I haz the power
Presubmit check for 10546083-134005 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 5 months ago (2012-07-19 20:36:29 UTC) #50
Bernhard Bauer
LGTM with one issue below fixed: http://codereview.chromium.org/10546083/diff/134005/chrome/browser/ui/content_settings/content_setting_bubble_model.h File chrome/browser/ui/content_settings/content_setting_bubble_model.h (right): http://codereview.chromium.org/10546083/diff/134005/chrome/browser/ui/content_settings/content_setting_bubble_model.h#newcode160 chrome/browser/ui/content_settings/content_setting_bubble_model.h:160: // Deprecated. Use ...
8 years, 5 months ago (2012-07-19 20:52:56 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/130010
8 years, 5 months ago (2012-07-19 21:02:05 UTC) #52
commit-bot: I haz the power
Try job failure for 10546083-130010 (retry) on linux_chromeos for step "compile" (clobber build). It's a ...
8 years, 5 months ago (2012-07-19 21:30:07 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/130012
8 years, 5 months ago (2012-07-19 23:14:49 UTC) #54
commit-bot: I haz the power
Try job failure for 10546083-130012 (retry) on linux_rel for step "browser_tests". It's a second try, ...
8 years, 5 months ago (2012-07-20 00:11:22 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/121034
8 years, 5 months ago (2012-07-20 00:11:29 UTC) #56
commit-bot: I haz the power
Change committed as 147597
8 years, 5 months ago (2012-07-20 01:52:04 UTC) #57
Steve McKay
FYI: The chromeos tests went flaky after this was submitted. It was reverted. I'll resubmit ...
8 years, 5 months ago (2012-07-20 16:43:03 UTC) #58
Greg Billock
On 2012/07/20 16:43:03, Steve McKay wrote: > FYI: The chromeos tests went flaky after this ...
8 years, 5 months ago (2012-07-20 20:44:25 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/123025
8 years, 5 months ago (2012-07-20 20:47:18 UTC) #60
commit-bot: I haz the power
Try job failure for 10546083-123025 (retry) on mac_rel for step "browser_tests". It's a second try, ...
8 years, 5 months ago (2012-07-20 22:13:17 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/123025
8 years, 5 months ago (2012-07-20 22:23:58 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smckay@chromium.org/10546083/123025
8 years, 5 months ago (2012-07-20 22:53:25 UTC) #63
commit-bot: I haz the power
8 years, 5 months ago (2012-07-21 00:26:34 UTC) #64
Change committed as 147745

Powered by Google App Engine
This is Rietveld 408576698