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

Issue 987583004: Add audible, muted to Tab, c.t.query, c.t.update, and c.t.onUpdated where relevant (Closed)

Created:
5 years, 9 months ago by Jared Sohn
Modified:
5 years, 5 months ago
CC:
chromium-apps-reviews_chromium.org, chromium-reviews, extensions-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@patch1
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add audible, muted to Tab, c.t.query, c.t.update, and c.t.onUpdated where relevant chrome.tabs.update will reject the audible property. When the onUpdated event is triggered for the muted property, it sets cause to "user", "capture", or the extension id that caused it Note: Requires --enable-tab-audio-muting flag to be active (chrome://flags) in order to set a tab's muted state via c.t.update. BUG=438903 Committed: https://crrev.com/09a3ccc44eb5b7552d6ec49dc8fb46678dd4025f Cr-Commit-Position: refs/heads/master@{#337981}

Patch Set 1 #

Patch Set 2 : attempt to add kalman as reviewer via git-cl owners (didn't work) #

Total comments: 26

Patch Set 3 : Response to feedback from messages #3, #4 #

Patch Set 4 : remove unneeded header files #

Total comments: 11

Patch Set 5 : Followup for review from message #10 #

Total comments: 1

Patch Set 6 : Move TabEntry forward declaration closer to method that uses it (Response to codereview message #17) #

Patch Set 7 : tests; also mutedCause is a part of the tab object and capture mutedCause changed to just 'capture' #

Total comments: 49

Patch Set 8 : Followup for review of patch #7 #

Total comments: 2

Patch Set 9 : change order of definitions in TabEntry #

Patch Set 10 : show message when user attempts to change mute state for tab being captured #

Patch Set 11 : header file order fixed #

Total comments: 2

Patch Set 12 : followups through message #33 #

Total comments: 12

Patch Set 13 : followups through message #36 #

Total comments: 3

Patch Set 14 : Change tabIsUnmutedWhenTabCaptured test to not require a timeout #

Total comments: 1

Patch Set 15 : rebased #

Patch Set 16 : Make TabsEventRouter a friend to TabEntry so that it will build on some platforms #

Total comments: 1

Patch Set 17 : TabEntry map stores entries as linked_ptrs #

Patch Set 18 : Including missing html/js files #

Patch Set 19 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+453 lines, -66 lines) Patch
M chrome/browser/extensions/api/tab_capture/tab_capture_apitest.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 chrome/browser/extensions/api/tabs/tabs_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +33 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_constants.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_constants.cc View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_event_router.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +39 lines, -23 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_event_router.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 11 chunks +75 lines, -37 lines 0 comments Download
M chrome/browser/extensions/extension_tab_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_tabs_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +18 lines, -0 lines 0 comments Download
M chrome/browser/ui/tabs/tab_utils.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/common/extensions/api/tabs.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +33 lines, -0 lines 0 comments Download
M chrome/test/data/extensions/api_test/tab_capture/api_tests.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +23 lines, -1 line 0 comments Download
A + chrome/test/data/extensions/api_test/tabs/basics/audible.html View 1 2 3 4 5 6 7 8 9 10 11 12 15 16 17 1 chunk +3 lines, -1 line 0 comments Download
A chrome/test/data/extensions/api_test/tabs/basics/audible.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +73 lines, -0 lines 0 comments Download
A + chrome/test/data/extensions/api_test/tabs/basics/muted.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -1 line 0 comments Download
A chrome/test/data/extensions/api_test/tabs/basics/muted.js View 1 2 3 4 5 6 7 8 9 10 11 12 15 16 17 1 chunk +46 lines, -0 lines 0 comments Download
A chrome/test/data/extensions/api_test/tabs/basics/sinewave.js View 1 2 3 4 5 6 7 8 9 10 11 12 15 16 17 1 chunk +38 lines, -0 lines 0 comments Download
M chrome/test/data/extensions/api_test/tabs/basics/tabs_util.js View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +55 lines, -2 lines 0 comments Download

Messages

Total messages: 93 (24 generated)
Jared Sohn
5 years, 9 months ago (2015-03-10 08:41:54 UTC) #2
miu
Looks great! Comments: https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc File chrome/browser/extensions/api/tabs/tabs_event_router.cc (right): https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc#newcode72 chrome/browser/extensions/api/tabs/tabs_event_router.cc:72: DispatchTabUpdatedEvent(contents, changed_properties.Pass()); Instead of dispatching separate ...
5 years, 9 months ago (2015-03-10 18:51:39 UTC) #3
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc File chrome/browser/extensions/api/tabs/tabs_event_router.cc (right): https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc#newcode5 chrome/browser/extensions/api/tabs/tabs_event_router.cc:5: #include <string> not needed, header file already includes <string> ...
5 years, 9 months ago (2015-03-10 22:30:08 UTC) #4
Jared Sohn
Responses for Patch 2 below. https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc File chrome/browser/extensions/api/tabs/tabs_event_router.cc (right): https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc#newcode5 chrome/browser/extensions/api/tabs/tabs_event_router.cc:5: #include <string> On 2015/03/10 ...
5 years, 9 months ago (2015-03-16 02:34:29 UTC) #5
Jared Sohn
extensions/common/value_builder.h and extensions/extensions.gypi will be removed from the patch (they are here to add DictionaryBuilder ...
5 years, 9 months ago (2015-03-16 02:42:03 UTC) #6
Jared Sohn
On 2015/03/16 at 02:42:03, Jared Sohn wrote: > extensions/common/value_builder.h and extensions/extensions.gypi will be removed from ...
5 years, 9 months ago (2015-03-16 02:47:57 UTC) #7
Jared Sohn
>What command do I need to use to do that? Nevermind; git-cl runhooks does it ...
5 years, 9 months ago (2015-03-16 05:58:32 UTC) #8
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc File chrome/browser/extensions/api/tabs/tabs_event_router.cc (right): https://codereview.chromium.org/987583004/diff/20001/chrome/browser/extensions/api/tabs/tabs_event_router.cc#newcode460 chrome/browser/extensions/api/tabs/tabs_event_router.cc:460: } On 2015/03/16 02:34:29, Jared Sohn wrote: > On ...
5 years, 9 months ago (2015-03-16 17:47:08 UTC) #9
not at google - send to devlin
Is there a way you can test these changes? - preferably unit test - if ...
5 years, 9 months ago (2015-03-16 18:11:56 UTC) #10
miu
On 2015/03/16 18:11:56, kalman wrote: > Is there a way you can test these changes? ...
5 years, 9 months ago (2015-03-17 07:44:03 UTC) #11
Jared Sohn
> *However*, all that said - perhaps we should just be returning DictionaryValue (well, scoped_ptr<DictionaryValue>). ...
5 years, 9 months ago (2015-03-19 19:58:42 UTC) #12
not at google - send to devlin
Have you posted the new patch?
5 years, 9 months ago (2015-03-19 20:54:59 UTC) #13
Jared Sohn
On 2015/03/19 at 20:54:59, kalman wrote: > Have you posted the new patch? Yeah; patch ...
5 years, 9 months ago (2015-03-19 21:00:03 UTC) #14
not at google - send to devlin
code lg, any luck with tests? https://codereview.chromium.org/987583004/diff/60001/chrome/browser/extensions/api/tabs/tabs_event_router.h File chrome/browser/extensions/api/tabs/tabs_event_router.h (right): https://codereview.chromium.org/987583004/diff/60001/chrome/browser/extensions/api/tabs/tabs_event_router.h#newcode36 chrome/browser/extensions/api/tabs/tabs_event_router.h:36: class TabEntry; On ...
5 years, 9 months ago (2015-03-19 21:23:35 UTC) #15
Jared Sohn
> code lg, any luck with tests? I think the tests look straightforward, but I ...
5 years, 9 months ago (2015-03-19 21:43:39 UTC) #16
not at google - send to devlin
On 2015/03/19 21:43:39, Jared Sohn wrote: > > code lg, any luck with tests? > ...
5 years, 9 months ago (2015-03-19 21:45:08 UTC) #17
Jared Sohn
On 2015/03/19 at 21:45:08, kalman wrote: > On 2015/03/19 21:43:39, Jared Sohn wrote: > > ...
5 years, 9 months ago (2015-03-19 22:10:33 UTC) #18
not at google - send to devlin
Oops totally forgot about this CL! I'll get back to is ASAP.
5 years, 7 months ago (2015-05-21 16:37:16 UTC) #19
miu
https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_event_router.h File chrome/browser/extensions/api/tabs/tabs_event_router.h (right): https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_event_router.h#newcode140 chrome/browser/extensions/api/tabs/tabs_event_router.h:140: TabEntry(); nit: Can you move this zero-arg constructor to ...
5 years, 7 months ago (2015-05-26 21:28:47 UTC) #20
not at google - send to devlin
Tests looking great. https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tab_capture/tab_capture_apitest.cc File chrome/browser/extensions/api/tab_capture/tab_capture_apitest.cc (right): https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tab_capture/tab_capture_apitest.cc#newcode44 chrome/browser/extensions/api/tab_capture/tab_capture_apitest.cc:44: command_line->AppendSwitch(::switches::kEnableTabAudioMuting); What does this flag actually ...
5 years, 7 months ago (2015-05-26 23:09:48 UTC) #21
Jared Sohn
Followups for feedback from patch #7. Also, patch #8 has been published to code review. ...
5 years, 7 months ago (2015-05-27 14:52:03 UTC) #22
miu
lgtm % one styling nit: https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tabs/basics/audible.js File chrome/test/data/extensions/api_test/tabs/basics/audible.js (right): https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tabs/basics/audible.js#newcode53 chrome/test/data/extensions/api_test/tabs/basics/audible.js:53: function testStaysAudibleAfterChangingWindow() { On ...
5 years, 7 months ago (2015-05-27 20:10:14 UTC) #23
Jared Sohn
One thing I neglected to mention: I get this message when I try to upload: ...
5 years, 7 months ago (2015-05-27 21:06:18 UTC) #24
miu
On 2015/05/27 21:06:18, Jared Sohn wrote: > One thing I neglected to mention: I get ...
5 years, 6 months ago (2015-05-28 18:54:09 UTC) #25
Jared Sohn
On 2015/05/28 at 18:54:09, miu wrote: > On 2015/05/27 21:06:18, Jared Sohn wrote: > > ...
5 years, 6 months ago (2015-05-28 19:45:34 UTC) #26
miu
Still lgtm. https://codereview.chromium.org/987583004/diff/140001/chrome/browser/extensions/api/tabs/tabs_event_router.h File chrome/browser/extensions/api/tabs/tabs_event_router.h (right): https://codereview.chromium.org/987583004/diff/140001/chrome/browser/extensions/api/tabs/tabs_event_router.h#newcode181 chrome/browser/extensions/api/tabs/tabs_event_router.h:181: friend class std::map<int, TabEntry>; On 2015/05/27 20:10:14, ...
5 years, 6 months ago (2015-05-28 21:36:23 UTC) #27
not at google - send to devlin
Responded to the test questions + added a .cc file comment. I'm holding off looking ...
5 years, 6 months ago (2015-05-28 23:04:42 UTC) #28
miu
https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_api.cc File chrome/browser/extensions/api/tabs/tabs_api.cc (right): https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_api.cc#newcode1200 chrome/browser/extensions/api/tabs/tabs_api.cc:1200: bool muted = *params->update_properties.muted; On 2015/05/28 23:04:42, kalman wrote: ...
5 years, 6 months ago (2015-05-28 23:36:59 UTC) #29
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_api.cc File chrome/browser/extensions/api/tabs/tabs_api.cc (right): https://codereview.chromium.org/987583004/diff/120001/chrome/browser/extensions/api/tabs/tabs_api.cc#newcode1200 chrome/browser/extensions/api/tabs/tabs_api.cc:1200: bool muted = *params->update_properties.muted; On 2015/05/28 23:36:59, miu wrote: ...
5 years, 6 months ago (2015-05-29 21:28:15 UTC) #30
miu
On 2015/05/29 21:28:15, kalman wrote: > Awesome. In that case we should actually be able ...
5 years, 6 months ago (2015-05-29 22:37:28 UTC) #31
not at google - send to devlin
On 2015/05/29 22:37:28, miu wrote: > On 2015/05/29 21:28:15, kalman wrote: > > Awesome. In ...
5 years, 6 months ago (2015-05-29 23:02:11 UTC) #32
Jared Sohn
On 2015/05/29 at 23:02:11, kalman wrote: > On 2015/05/29 22:37:28, miu wrote: > > On ...
5 years, 6 months ago (2015-05-30 06:27:26 UTC) #33
not at google - send to devlin
I'll probably forget to make this comment after reviewing this CL, so quickly: in your ...
5 years, 6 months ago (2015-06-01 18:24:29 UTC) #34
Jared Sohn
On 2015/06/01 at 18:24:29, kalman wrote: > I'll probably forget to make this comment after ...
5 years, 6 months ago (2015-06-01 18:38:36 UTC) #35
not at google - send to devlin
Just test comments now. https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js File chrome/test/data/extensions/api_test/tab_capture/api_tests.js (right): https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js#newcode126 chrome/test/data/extensions/api_test/tab_capture/api_tests.js:126: }, 200); On 2015/05/28 23:36:59, ...
5 years, 6 months ago (2015-06-01 20:33:57 UTC) #36
Jared Sohn
I uploaded a new patch. Comments below. https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js File chrome/test/data/extensions/api_test/tab_capture/api_tests.js (right): https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js#newcode126 chrome/test/data/extensions/api_test/tab_capture/api_tests.js:126: }, 200); ...
5 years, 6 months ago (2015-06-02 08:54:39 UTC) #37
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js File chrome/test/data/extensions/api_test/tab_capture/api_tests.js (right): https://codereview.chromium.org/987583004/diff/120001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js#newcode126 chrome/test/data/extensions/api_test/tab_capture/api_tests.js:126: }, 200); On 2015/06/02 08:54:38, Jared Sohn wrote: > ...
5 years, 6 months ago (2015-06-02 18:26:44 UTC) #38
Jared Sohn
>If there's no way to guarantee that if you mute a tab, then turn around ...
5 years, 6 months ago (2015-06-03 00:20:44 UTC) #39
Jared Sohn
An update on this: I changed the constant from 200 ms to 2000 ms in ...
5 years, 6 months ago (2015-06-03 01:51:35 UTC) #40
not at google - send to devlin
On 2015/06/03 01:51:35, Jared Sohn wrote: > An update on this: > > I changed ...
5 years, 6 months ago (2015-06-03 16:16:50 UTC) #41
Jared Sohn
Oops, I should have thought more about what "bot having a bad day" meant. (I ...
5 years, 6 months ago (2015-06-03 22:43:30 UTC) #42
not at google - send to devlin
On 2015/06/03 22:43:30, Jared Sohn wrote: > Oops, I should have thought more about what ...
5 years, 6 months ago (2015-06-03 22:49:17 UTC) #43
Jared Sohn
> In that case wouldn't you only need to poll over {wait a bit}, and/or ...
5 years, 6 months ago (2015-06-03 23:32:17 UTC) #44
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/240001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js File chrome/test/data/extensions/api_test/tab_capture/api_tests.js (right): https://codereview.chromium.org/987583004/diff/240001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js#newcode104 chrome/test/data/extensions/api_test/tab_capture/api_tests.js:104: chrome.test.listenForever(chrome.tabs.onUpdated, you should also stop listening to this, var ...
5 years, 6 months ago (2015-06-04 00:00:06 UTC) #45
Jared Sohn
>then call stopListening before calling chrome.test.succeed(). in fact that may automatically call succeed :\ It ...
5 years, 6 months ago (2015-06-04 00:44:27 UTC) #46
not at google - send to devlin
On 2015/06/04 00:44:27, Jared Sohn wrote: > >then call stopListening before calling chrome.test.succeed(). in fact ...
5 years, 6 months ago (2015-06-05 19:32:08 UTC) #47
Jared Sohn
Yes, please. (I looked over my notes for when I changed approaches and as far ...
5 years, 6 months ago (2015-06-05 21:03:58 UTC) #48
not at google - send to devlin
lgtm, let's go! https://codereview.chromium.org/987583004/diff/260001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js File chrome/test/data/extensions/api_test/tab_capture/api_tests.js (right): https://codereview.chromium.org/987583004/diff/260001/chrome/test/data/extensions/api_test/tab_capture/api_tests.js#newcode106 chrome/test/data/extensions/api_test/tab_capture/api_tests.js:106: if ((changeInfo["muted"] === true)) { outer ...
5 years, 6 months ago (2015-06-05 21:20:53 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/260001
5 years, 6 months ago (2015-06-10 22:39:58 UTC) #52
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/61779) ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, ...
5 years, 6 months ago (2015-06-10 22:45:34 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/280001
5 years, 6 months ago (2015-06-15 21:53:30 UTC) #57
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_dbg/builds/82308)
5 years, 6 months ago (2015-06-15 22:08:43 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/300001
5 years, 6 months ago (2015-06-15 22:39:00 UTC) #62
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_dbg on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_dbg/builds/82338)
5 years, 6 months ago (2015-06-15 23:11:43 UTC) #64
Jared Sohn
The error that we are getting now on some platforms is related to moving the ...
5 years, 6 months ago (2015-06-16 00:42:03 UTC) #65
not at google - send to devlin
https://codereview.chromium.org/987583004/diff/300001/chrome/browser/extensions/api/tabs/tabs_event_router.h File chrome/browser/extensions/api/tabs/tabs_event_router.h (right): https://codereview.chromium.org/987583004/diff/300001/chrome/browser/extensions/api/tabs/tabs_event_router.h#newcode201 chrome/browser/extensions/api/tabs/tabs_event_router.h:201: std::map<int, TabEntry> tab_entries_; I would do this: using TabEntryMap ...
5 years, 6 months ago (2015-06-16 18:40:58 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/320001
5 years, 6 months ago (2015-06-21 05:24:34 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/70144)
5 years, 6 months ago (2015-06-21 06:28:45 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/320001
5 years, 6 months ago (2015-06-23 00:45:45 UTC) #73
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/70683)
5 years, 6 months ago (2015-06-23 01:51:26 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/320001
5 years, 6 months ago (2015-06-24 21:40:08 UTC) #77
commit-bot: I haz the power
Exceeded global retry quota
5 years, 6 months ago (2015-06-24 22:00:30 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/320001
5 years, 6 months ago (2015-06-24 22:21:13 UTC) #81
commit-bot: I haz the power
Exceeded global retry quota
5 years, 6 months ago (2015-06-24 22:33:46 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/340001
5 years, 5 months ago (2015-07-08 23:41:35 UTC) #86
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/71222) ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, ...
5 years, 5 months ago (2015-07-08 23:45:55 UTC) #88
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/987583004/360001
5 years, 5 months ago (2015-07-09 01:22:20 UTC) #91
commit-bot: I haz the power
Committed patchset #19 (id:360001)
5 years, 5 months ago (2015-07-09 03:47:41 UTC) #92
commit-bot: I haz the power
5 years, 5 months ago (2015-07-09 03:48:37 UTC) #93
Message was sent while issue was closed.
Patchset 19 (id:??) landed as
https://crrev.com/09a3ccc44eb5b7552d6ec49dc8fb46678dd4025f
Cr-Commit-Position: refs/heads/master@{#337981}

Powered by Google App Engine
This is Rietveld 408576698