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

Issue 10514013: Filtered events. (Closed)

Created:
8 years, 6 months ago by koz (OOO until 15th September)
Modified:
8 years, 5 months ago
CC:
chromium-reviews, mihaip-chromium-reviews_chromium.org, darin-cc_chromium.org, brettw-cc_chromium.org, benwells, battre, aa, not at google - send to devlin
Visibility:
Public.

Description

Filtered events. Makes web_navigation events support filters, eg: chrome.webNavigation.onBeforeCommitted.addListener(callback, {url: [{hostSuffix: 'google.com'}]}); Now callback will only be called when the event has a URL with a host suffix of google.com. BUG=121479 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=143872 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=143874 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=143896 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=145145 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=145484

Patch Set 1 #

Patch Set 2 : work #

Patch Set 3 : split out event_filter changes #

Total comments: 74

Patch Set 4 : respond to comments #

Patch Set 5 : rename and move EventListenerMap's delegate #

Total comments: 16

Patch Set 6 : respond to comments #

Patch Set 7 : add API permission check to filtered events :-| #

Total comments: 24

Patch Set 8 : respond to comments #

Patch Set 9 : rebase, fix cross_incognito_args bug #

Total comments: 78

Patch Set 10 : respond to comments #

Patch Set 11 : fix 80 char #

Total comments: 18

Patch Set 12 : respond to comments #

Patch Set 13 : fix compile bugs #

Patch Set 14 : add virtual destructor to Delegate #

Patch Set 15 : rebase #

Patch Set 16 : fix platform apps event dispatch #

Patch Set 17 : rebase #

Patch Set 18 : fix namespace issue #

Patch Set 19 : fix bug that prevented lazy listeners from being loaded at extension load #

Patch Set 20 : fix 80 char #

Patch Set 21 : fix unittest #

Patch Set 22 : rebase, reland #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2095 lines, -337 lines) Patch
M chrome/browser/accessibility/accessibility_extension_api.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/bookmarks/bookmark_extension_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/bookmarks/bookmark_manager_extension_api.cc View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/api/cookies/cookies_api.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/api/downloads/downloads_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/web_navigation/web_navigation_api.cc View 1 2 3 4 5 6 7 8 8 chunks +21 lines, -24 lines 0 comments Download
M chrome/browser/extensions/api/web_navigation/web_navigation_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +12 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/web_request/web_request_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
A chrome/browser/extensions/event_listener_map.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +159 lines, -0 lines 0 comments Download
A chrome/browser/extensions/event_listener_map.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +240 lines, -0 lines 0 comments Download
A chrome/browser/extensions/event_listener_map_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +299 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_browser_event_router.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/extension_devtools_bridge.cc View 1 2 3 4 5 6 7 2 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/extensions/extension_event_router.h View 1 2 3 4 5 6 7 8 9 10 11 12 10 chunks +93 lines, -29 lines 0 comments Download
M chrome/browser/extensions/extension_event_router.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 16 chunks +240 lines, -183 lines 0 comments Download
M chrome/browser/extensions/extension_event_router_forwarder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/extensions/extension_idle_api.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/extension_managed_mode_api.cc View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/extensions/extension_management_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/extension_messages_apitest.cc View 1 1 chunk +8 lines, -4 lines 0 comments Download
M chrome/browser/extensions/extension_prefs.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +15 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_prefs.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +57 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_processes_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/lazy_background_page_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +16 lines, -0 lines 0 comments Download
M chrome/browser/extensions/system/system_api.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/history/history_extension_api.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +8 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +34 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/menu_controller_unittest.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/common/extensions/api/web_navigation.json View 1 7 chunks +35 lines, -0 lines 0 comments Download
M chrome/common/extensions/event_filtering_info.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/common/extensions/event_filtering_info.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +14 lines, -0 lines 0 comments Download
M chrome/common/extensions/extension_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +16 lines, -0 lines 0 comments Download
A chrome/common/extensions/value_counter.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +72 lines, -0 lines 0 comments Download
A chrome/common/extensions/value_counter.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +67 lines, -0 lines 0 comments Download
A chrome/common/extensions/value_counter_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +42 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/event_bindings.h View 2 chunks +6 lines, -1 line 0 comments Download
M chrome/renderer/extensions/event_bindings.cc View 1 2 3 4 5 6 7 8 9 7 chunks +204 lines, -21 lines 0 comments Download
M chrome/renderer/extensions/event_unittest.cc View 1 2 3 4 5 6 7 3 chunks +154 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/extension_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +9 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/extension_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/renderer/resources/extensions/event.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 12 chunks +164 lines, -56 lines 0 comments Download
A chrome/test/data/extensions/api_test/filtered_events/manifest.json View 1 1 chunk +11 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/api_test/lazy_background_page/filters/background.js View 1 1 chunk +9 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/api_test/lazy_background_page/filters/manifest.json View 1 1 chunk +11 lines, -0 lines 0 comments Download
A + chrome/test/data/extensions/api_test/webnavigation/filtered/a.html View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/test/data/extensions/api_test/webnavigation/filtered/b.html View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A chrome/test/data/extensions/api_test/webnavigation/test_filtered.html View 1 1 chunk +5 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/api_test/webnavigation/test_filtered.js View 1 1 chunk +28 lines, -0 lines 0 comments Download

Messages

Total messages: 53 (0 generated)
koz (OOO until 15th September)
This depends on https://chromiumcodereview.appspot.com/10534125/, and extends upon and makes redundant http://codereview.chromium.org/10381143/ Sorry for the huge ...
8 years, 6 months ago (2012-06-12 22:45:27 UTC) #1
koz (OOO until 15th September)
Also, I have made the IPC for adding filtered events have a lazy flag instead ...
8 years, 6 months ago (2012-06-13 00:11:02 UTC) #2
Matt Perry
http://codereview.chromium.org/10514013/diff/5001/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc File chrome/browser/extensions/api/web_navigation/web_navigation_api.cc (right): http://codereview.chromium.org/10514013/diff/5001/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc#newcode83 chrome/browser/extensions/api/web_navigation/web_navigation_api.cc:83: info.SetURL(GURL(url_string)); This feels dirty. Let's just pass the URL ...
8 years, 6 months ago (2012-06-13 01:24:27 UTC) #3
battre
A couple of comments. I have to admit, that I did not do a full ...
8 years, 6 months ago (2012-06-13 09:21:54 UTC) #4
koz (OOO until 15th September)
Thanks for the reviews, guys! [+sky for OWNERS for chrome/browser/{history,bookmarks}] http://codereview.chromium.org/10514013/diff/5001/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc File chrome/browser/extensions/api/web_navigation/web_navigation_api.cc (right): http://codereview.chromium.org/10514013/diff/5001/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc#newcode83 ...
8 years, 6 months ago (2012-06-14 02:15:55 UTC) #5
sky
history/bookmarks LGTM
8 years, 6 months ago (2012-06-14 03:21:24 UTC) #6
Matt Perry
http://codereview.chromium.org/10514013/diff/5001/chrome/renderer/resources/extensions/event.js File chrome/renderer/resources/extensions/event.js (right): http://codereview.chromium.org/10514013/diff/5001/chrome/renderer/resources/extensions/event.js#newcode81 chrome/renderer/resources/extensions/event.js:81: var UnfilteredAttachmentStrategy = function(event) { On 2012/06/14 02:15:55, koz ...
8 years, 6 months ago (2012-06-14 18:48:55 UTC) #7
battre
I tried to reserve some time for coding myself today and now it is 10pm ...
8 years, 6 months ago (2012-06-14 20:05:11 UTC) #8
koz (OOO until 15th September)
That's okay Dominic, I appreciate your efforts! I hope you find some more time to ...
8 years, 6 months ago (2012-06-15 00:07:14 UTC) #9
Matt Perry
http://codereview.chromium.org/10514013/diff/5001/chrome/renderer/resources/extensions/event.js File chrome/renderer/resources/extensions/event.js (right): http://codereview.chromium.org/10514013/diff/5001/chrome/renderer/resources/extensions/event.js#newcode81 chrome/renderer/resources/extensions/event.js:81: var UnfilteredAttachmentStrategy = function(event) { On 2012/06/15 00:07:14, koz ...
8 years, 6 months ago (2012-06-15 00:10:39 UTC) #10
Aaron Boodman
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/accessibility/accessibility_extension_api.cc File chrome/browser/accessibility/accessibility_extension_api.cc (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/accessibility/accessibility_extension_api.cc#newcode167 chrome/browser/accessibility/accessibility_extension_api.cc:167: event_name, json_args, NULL, GURL(), extensions::EventFilteringInfo()); It's allowed style-wise to ...
8 years, 6 months ago (2012-06-15 07:34:51 UTC) #11
Aaron Boodman
(sorry for driveby)
8 years, 6 months ago (2012-06-15 07:35:05 UTC) #12
Aaron Boodman
Oh, and most importantly -- this is changing the released API on all channels. We ...
8 years, 6 months ago (2012-06-15 07:38:06 UTC) #13
battre
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/accessibility/accessibility_extension_api.cc File chrome/browser/accessibility/accessibility_extension_api.cc (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/accessibility/accessibility_extension_api.cc#newcode167 chrome/browser/accessibility/accessibility_extension_api.cc:167: event_name, json_args, NULL, GURL(), extensions::EventFilteringInfo()); On 2012/06/15 07:34:51, Aaron ...
8 years, 6 months ago (2012-06-15 07:45:58 UTC) #14
Aaron Boodman
On Fri, Jun 15, 2012 at 12:45 AM, <battre@chromium.org> wrote: > > http://codereview.chromium.org/10514013/diff/15060/chrome/browser/accessibility/accessibility_extension_api.cc > File ...
8 years, 6 months ago (2012-06-15 07:53:53 UTC) #15
Matt Perry
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h File chrome/browser/extensions/extension_prefs.h (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h#newcode278 chrome/browser/extensions/extension_prefs.h:278: // Adds a filter to an event. On 2012/06/15 ...
8 years, 6 months ago (2012-06-15 18:59:34 UTC) #16
Aaron Boodman
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h File chrome/browser/extensions/extension_prefs.h (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h#newcode278 chrome/browser/extensions/extension_prefs.h:278: // Adds a filter to an event. On 2012/06/15 ...
8 years, 6 months ago (2012-06-15 22:37:31 UTC) #17
koz (OOO until 15th September)
I've addressed the comments, except for the one about using the new extensions storage instead ...
8 years, 6 months ago (2012-06-18 23:27:27 UTC) #18
Matt Perry
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h File chrome/browser/extensions/extension_prefs.h (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_prefs.h#newcode278 chrome/browser/extensions/extension_prefs.h:278: // Adds a filter to an event. On 2012/06/18 ...
8 years, 6 months ago (2012-06-18 23:35:45 UTC) #19
koz (OOO until 15th September)
Sure, I'm happy to do that. Are there any other outstanding issues with this change?
8 years, 6 months ago (2012-06-18 23:49:30 UTC) #20
Matt Perry
LGTM http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_event_router.cc File chrome/browser/extensions/extension_event_router.cc (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_event_router.cc#newcode80 chrome/browser/extensions/extension_event_router.cc:80: args.Set(2, Value::CreateStringValue(info.AsJSONString())); On 2012/06/18 23:27:27, koz wrote: > ...
8 years, 6 months ago (2012-06-19 00:02:54 UTC) #21
koz (OOO until 15th September)
http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_event_router.cc File chrome/browser/extensions/extension_event_router.cc (right): http://codereview.chromium.org/10514013/diff/15060/chrome/browser/extensions/extension_event_router.cc#newcode80 chrome/browser/extensions/extension_event_router.cc:80: args.Set(2, Value::CreateStringValue(info.AsJSONString())); On 2012/06/19 00:02:55, Matt Perry wrote: > ...
8 years, 6 months ago (2012-06-19 00:11:36 UTC) #22
battre
My attention span is suffering (90 minutes code review). I am not sure whether the ...
8 years, 6 months ago (2012-06-19 14:26:22 UTC) #23
koz (OOO until 15th September)
Thanks for the thorough review, Dominic! I always feel like I learn something from your ...
8 years, 6 months ago (2012-06-20 08:05:56 UTC) #24
battre
Great, I think we are almost there. http://codereview.chromium.org/10514013/diff/25005/chrome/common/extensions/event_filtering_info.cc File chrome/common/extensions/event_filtering_info.cc (right): http://codereview.chromium.org/10514013/diff/25005/chrome/common/extensions/event_filtering_info.cc#newcode38 chrome/common/extensions/event_filtering_info.cc:38: return scoped_ptr<base::Value>(result.release()); ...
8 years, 6 months ago (2012-06-20 09:50:45 UTC) #25
koz (OOO until 15th September)
http://codereview.chromium.org/10514013/diff/25005/chrome/common/extensions/event_filtering_info.cc File chrome/common/extensions/event_filtering_info.cc (right): http://codereview.chromium.org/10514013/diff/25005/chrome/common/extensions/event_filtering_info.cc#newcode38 chrome/common/extensions/event_filtering_info.cc:38: return scoped_ptr<base::Value>(result.release()); On 2012/06/20 09:50:46, battre wrote: > nit: ...
8 years, 6 months ago (2012-06-21 02:23:10 UTC) #26
battre
Awesome. Thanks for your patience. LGTM. http://codereview.chromium.org/10514013/diff/25005/chrome/renderer/extensions/event_bindings.cc File chrome/renderer/extensions/event_bindings.cc (right): http://codereview.chromium.org/10514013/diff/25005/chrome/renderer/extensions/event_bindings.cc#newcode200 chrome/renderer/extensions/event_bindings.cc:200: delete filter_value; On ...
8 years, 6 months ago (2012-06-21 05:35:16 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/47002
8 years, 6 months ago (2012-06-21 06:22:31 UTC) #28
commit-bot: I haz the power
Try job failure for 10514013-47002 (retry) on linux_clang for step "compile" (clobber build). It's a ...
8 years, 6 months ago (2012-06-21 06:48:08 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/51003
8 years, 6 months ago (2012-06-21 07:02:08 UTC) #30
commit-bot: I haz the power
Try job failure for 10514013-51003 (retry) on linux_rel for step "browser_tests". It's a second try, ...
8 years, 6 months ago (2012-06-21 08:06:20 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/51003
8 years, 6 months ago (2012-06-21 22:22:22 UTC) #32
commit-bot: I haz the power
Failed to apply patch for chrome/browser/download/download_extension_api.cc: While running patch -p1 --forward --force; patching file chrome/browser/download/download_extension_api.cc ...
8 years, 6 months ago (2012-06-21 22:22:32 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/54001
8 years, 6 months ago (2012-06-21 23:58:37 UTC) #34
commit-bot: I haz the power
Try job failure for 10514013-54001 (retry) on linux_rel for step "browser_tests". It's a second try, ...
8 years, 6 months ago (2012-06-22 01:05:21 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/57002
8 years, 6 months ago (2012-06-22 06:21:09 UTC) #36
commit-bot: I haz the power
Try job failure for 10514013-57002 (retry) on mac_rel for step "unit_tests". It's a second try, ...
8 years, 6 months ago (2012-06-22 07:16:01 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/57002
8 years, 6 months ago (2012-06-22 07:43:36 UTC) #38
commit-bot: I haz the power
Try job failure for 10514013-57002 (retry) on mac_rel for step "unit_tests". It's a second try, ...
8 years, 6 months ago (2012-06-22 08:36:05 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/74001
8 years, 6 months ago (2012-06-25 06:44:56 UTC) #40
commit-bot: I haz the power
Try job failure for 10514013-74001 (retry) on mac_rel for step "browser_tests". It's a second try, ...
8 years, 6 months ago (2012-06-25 07:45:22 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/74001
8 years, 6 months ago (2012-06-25 09:18:21 UTC) #42
commit-bot: I haz the power
Change committed as 143896
8 years, 6 months ago (2012-06-25 11:39:02 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/84001
8 years, 5 months ago (2012-07-02 07:11:05 UTC) #44
commit-bot: I haz the power
Presubmit check for 10514013-84001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 5 months ago (2012-07-02 07:11:34 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/89001
8 years, 5 months ago (2012-07-02 07:18:09 UTC) #46
commit-bot: I haz the power
Try job failure for 10514013-89001 (retry) on mac_rel for step "compile" (clobber build). It's a ...
8 years, 5 months ago (2012-07-02 07:38:36 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/90055
8 years, 5 months ago (2012-07-02 12:55:23 UTC) #48
commit-bot: I haz the power
Try job failure for 10514013-90055 (retry) on linux_rel for step "interactive_ui_tests". It's a second try, ...
8 years, 5 months ago (2012-07-02 13:41:41 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/90055
8 years, 5 months ago (2012-07-02 13:42:20 UTC) #50
commit-bot: I haz the power
Change committed as 145145
8 years, 5 months ago (2012-07-02 14:56:25 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/10514013/97001
8 years, 5 months ago (2012-07-04 23:52:11 UTC) #52
commit-bot: I haz the power
8 years, 5 months ago (2012-07-05 01:05:00 UTC) #53
Change committed as 145484

Powered by Google App Engine
This is Rietveld 408576698