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

Issue 2119033002: [Material][Mac] Implement Omnibox Verbose State Chips (Closed)

Created:
4 years, 5 months ago by spqchan
Modified:
4 years, 3 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Material][Mac] Implement Omnibox Verbose State Chips Replaced EVBubbleDecoration with VerboseStateDecoration. VerboseStateDecoration displays both the security state and the EV Cert by animating in and out. Animations only occur when the security level has changed or if the omnibox becomes narrow or wide. Verbose states animates in when the security level changes to HTTPS or an invalid HTTPS. It animates outs if the security level changes to something else. If there's not enough room on the omnibox, the security state should not appear, and will animate out if it's already displayed. It will animate back in if the user resize the window so that there's enough room. BUG=622529 Committed: https://crrev.com/0afe4deba4f93d82430e90d789ab39e3c788c891 Cr-Commit-Position: refs/heads/master@{#416119}

Patch Set 1 #

Patch Set 2 : Removed the verbose for "NOT SECURE" #

Total comments: 2

Patch Set 3 : Rebase and fixed #

Patch Set 4 : nit #

Patch Set 5 : Fixed animation #

Patch Set 6 #

Patch Set 7 : more animation stuff #

Patch Set 8 : Restructure the code #

Patch Set 9 : Deactivate the animation #

Patch Set 10 : Remove animation code #

Patch Set 11 : Updated comments #

Patch Set 12 : Made changes for spec updates #

Patch Set 13 : Fixed an edge case with History Query #

Patch Set 14 : Redid verbose state for the new specs #

Patch Set 15 : Cleaned up and renamed some stuff #

Patch Set 16 : Refactored logic in location bar view #

Patch Set 17 : More clean up #

Patch Set 18 : Fixed label #

Patch Set 19 : Animates the verbose in and out when it switches between narrow and wide #

Patch Set 20 : Edge case #

Patch Set 21 : Fixed another nasty edge case =/ #

Patch Set 22 : Clean up #

Patch Set 23 : nit #

Patch Set 24 : comment nit #

Patch Set 25 : Switched to time-based animation #

Patch Set 26 : Cleaned up #

Patch Set 27 : nit #

Total comments: 30

Patch Set 28 : Fix for rsesek #

Patch Set 29 : Renamed class and files #

Patch Set 30 : More fixes #

Patch Set 31 : fixes for the fixes #

Total comments: 15

Patch Set 32 : Fix for rsesek #

Total comments: 2

Patch Set 33 : Rebased and fixed conflicts #

Patch Set 34 : fix for rsesek #

Total comments: 6

Patch Set 35 : Fix for pkasting #

Patch Set 36 : Removed 'AnimateOut for connection states and did the tab thing. Still need to refactor though #

Patch Set 37 : Added comments #

Patch Set 38 : Adjustments with tab switching and the animation #

Patch Set 39 : Rebased and switched to SlideAnimation #

Patch Set 40 : nits #

Patch Set 41 : nit #

Patch Set 42 : rebased #

Patch Set 43 : Fixed test #

Patch Set 44 : nit #

Unified diffs Side-by-side diffs Delta from patch set Stats (+4011 lines, -367 lines) Patch
M chrome/browser/ui/BUILD.gn 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 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm 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 30 2 chunks +9 lines, -7 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/bubble_decoration.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 30 31 32 3 chunks +9 lines, -5 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/bubble_decoration.mm 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 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.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 30 31 32 1 chunk +0 lines, -67 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration.mm 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 30 31 32 33 34 35 36 37 38 39 1 chunk +0 lines, -170 lines 0 comments Download
D chrome/browser/ui/cocoa/location_bar/ev_bubble_decoration_unittest.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -55 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.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 30 31 32 33 34 35 36 6 chunks +26 lines, -4 lines 0 comments Download
M chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm 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 30 31 32 33 34 35 36 37 38 16 chunks +123 lines, -43 lines 0 comments Download
A chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.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 30 31 32 33 34 35 36 37 38 39 40 41 42 1 chunk +112 lines, -0 lines 0 comments Download
A chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm 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 30 31 32 33 34 35 36 37 38 39 40 41 42 1 chunk +368 lines, -0 lines 0 comments Download
A + chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration_unittest.mm 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +11 lines, -7 lines 0 comments Download
A chrome/chrome_browser_ui.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 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +3344 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.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 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 83 (26 generated)
spqchan
PTAL
4 years, 5 months ago (2016-07-06 17:15:25 UTC) #4
shrike
Hello spqchan@, This code is not compiling for me? I get an error about ev_bubble_decoration_ ...
4 years, 5 months ago (2016-07-08 22:03:07 UTC) #5
upolat
https://codereview.chromium.org/2119033002/diff/20001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): https://codereview.chromium.org/2119033002/diff/20001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode992 chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm:992: // The first run bubble's left edge should line ...
4 years, 5 months ago (2016-07-08 22:17:59 UTC) #6
spqchan
Whoops sorry, I forgot to rebase it so there was a conflict with the new ...
4 years, 5 months ago (2016-07-11 17:57:09 UTC) #7
shrike
On 2016/07/11 17:57:09, spqchan wrote: > Whoops sorry, I forgot to rebase it so there ...
4 years, 5 months ago (2016-07-13 00:26:36 UTC) #8
spqchan
On 2016/07/13 00:26:36, shrike wrote: > On 2016/07/11 17:57:09, spqchan wrote: > > Whoops sorry, ...
4 years, 5 months ago (2016-07-15 22:47:32 UTC) #9
spqchan
PTAL I removed the animation code. If you want to check out the animation, it's ...
4 years, 5 months ago (2016-07-20 00:33:33 UTC) #12
spqchan
On 2016/07/20 00:33:33, spqchan wrote: > PTAL > > I removed the animation code. > ...
4 years, 5 months ago (2016-07-22 00:14:39 UTC) #14
spqchan
Okay, finally finished redoing this based on the new specs! Since you're going to go ...
4 years, 4 months ago (2016-08-12 00:46:34 UTC) #16
shrike
On 2016/08/12 00:46:34, spqchan wrote: > Okay, finally finished redoing this based on the new ...
4 years, 4 months ago (2016-08-12 00:48:35 UTC) #17
shrike
On 2016/08/12 00:46:34, spqchan wrote: > Okay, finally finished redoing this based on the new ...
4 years, 4 months ago (2016-08-12 23:58:24 UTC) #20
spqchan
On 2016/08/12 23:58:24, shrike wrote: > On 2016/08/12 00:46:34, spqchan wrote: > > Okay, finally ...
4 years, 4 months ago (2016-08-13 00:06:25 UTC) #21
shrike
On 2016/08/13 00:06:25, spqchan wrote: > 1) Hmm that's a good point. There's no testing ...
4 years, 4 months ago (2016-08-13 00:22:58 UTC) #22
spqchan
On 2016/08/13 00:22:58, shrike wrote: > On 2016/08/13 00:06:25, spqchan wrote: > > 1) Hmm ...
4 years, 4 months ago (2016-08-13 00:28:10 UTC) #23
shrike
On 2016/08/13 00:28:10, spqchan wrote: > The timer is set to fire at each 1/60 ...
4 years, 4 months ago (2016-08-13 00:34:25 UTC) #24
spqchan
On 2016/08/13 00:34:25, shrike wrote: > On 2016/08/13 00:28:10, spqchan wrote: > > The timer ...
4 years, 4 months ago (2016-08-15 20:00:33 UTC) #25
spqchan
Hey Robert, Do you have the time to review this? Unfortunately, Jayson is out this ...
4 years, 4 months ago (2016-08-15 20:02:31 UTC) #27
Robert Sesek
https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm File chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm (right): https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm#newcode119 chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm:119: &location_icon_decoration, NULL); nullptr https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode617 chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm:617: ...
4 years, 4 months ago (2016-08-16 22:25:33 UTC) #28
spqchan
On 2016/08/16 22:25:33, Robert Sesek wrote: > https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm > File > chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm > (right): > ...
4 years, 4 months ago (2016-08-17 00:41:05 UTC) #29
spqchan
PTAL https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm File chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm (right): https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm#newcode119 chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell_unittest.mm:119: &location_icon_decoration, NULL); On 2016/08/16 22:25:32, Robert Sesek wrote: ...
4 years, 4 months ago (2016-08-17 00:41:18 UTC) #30
Robert Sesek
https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h File chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h (right): https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h#newcode24 chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h:24: explicit VerboseStateBubbleDecoration(LocationIconDecoration* location_icon, On 2016/08/17 00:41:18, spqchan wrote: > ...
4 years, 4 months ago (2016-08-18 14:43:24 UTC) #31
spqchan
PTAL https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h File chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h (right): https://codereview.chromium.org/2119033002/diff/520001/chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h#newcode24 chrome/browser/ui/cocoa/location_bar/verbose_state_bubble_decoration.h:24: explicit VerboseStateBubbleDecoration(LocationIconDecoration* location_icon, On 2016/08/18 14:43:23, Robert Sesek ...
4 years, 4 months ago (2016-08-18 18:37:18 UTC) #32
Robert Sesek
LGTM https://codereview.chromium.org/2119033002/diff/620001/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm File chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm (right): https://codereview.chromium.org/2119033002/diff/620001/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm#newcode215 chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm:215: full_label_.reset([[NSString alloc] initWithString:label]); [label copy] is what I ...
4 years, 4 months ago (2016-08-18 19:33:59 UTC) #33
spqchan
Thanks! +pkasting for component/toolbar/ OWNER https://codereview.chromium.org/2119033002/diff/620001/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm File chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm (right): https://codereview.chromium.org/2119033002/diff/620001/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm#newcode215 chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm:215: full_label_.reset([[NSString alloc] initWithString:label]); On ...
4 years, 4 months ago (2016-08-18 21:08:30 UTC) #35
Peter Kasting
https://codereview.chromium.org/2119033002/diff/660001/components/toolbar/toolbar_model_impl.cc File components/toolbar/toolbar_model_impl.cc (right): https://codereview.chromium.org/2119033002/diff/660001/components/toolbar/toolbar_model_impl.cc#newcode140 components/toolbar/toolbar_model_impl.cc:140: case SecurityStateModel::NONE: Nit: I'm inclined to just change all ...
4 years, 4 months ago (2016-08-18 21:15:00 UTC) #37
spqchan
PTAL https://codereview.chromium.org/2119033002/diff/660001/components/toolbar/toolbar_model_impl.cc File components/toolbar/toolbar_model_impl.cc (right): https://codereview.chromium.org/2119033002/diff/660001/components/toolbar/toolbar_model_impl.cc#newcode140 components/toolbar/toolbar_model_impl.cc:140: case SecurityStateModel::NONE: On 2016/08/18 21:15:00, Peter Kasting wrote: ...
4 years, 4 months ago (2016-08-18 21:56:32 UTC) #39
Peter Kasting
https://codereview.chromium.org/2119033002/diff/660001/ui/gfx/animation/tween.h File ui/gfx/animation/tween.h (right): https://codereview.chromium.org/2119033002/diff/660001/ui/gfx/animation/tween.h#newcode34 ui/gfx/animation/tween.h:34: FAST_OUT_SLOW_IN_EXPO, // Exponential variant of FAST_OUT_SLOW_IN. On 2016/08/18 21:56:32, ...
4 years, 4 months ago (2016-08-18 22:05:10 UTC) #40
spqchan
https://codereview.chromium.org/2119033002/diff/660001/ui/gfx/animation/tween.h File ui/gfx/animation/tween.h (right): https://codereview.chromium.org/2119033002/diff/660001/ui/gfx/animation/tween.h#newcode34 ui/gfx/animation/tween.h:34: FAST_OUT_SLOW_IN_EXPO, // Exponential variant of FAST_OUT_SLOW_IN. On 2016/08/18 22:05:09, ...
4 years, 4 months ago (2016-08-18 22:18:33 UTC) #41
Peter Kasting
LGTM once that gets resolved
4 years, 4 months ago (2016-08-18 22:19:28 UTC) #42
spqchan
On 2016/08/18 22:19:28, Peter Kasting wrote: > LGTM once that gets resolved Update from UI: ...
4 years, 3 months ago (2016-08-22 16:53:39 UTC) #43
Peter Kasting
https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode620 chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm:620: // animate it out if it's already fully displayed. ...
4 years, 3 months ago (2016-08-22 22:39:42 UTC) #44
Kevin Bailey
https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode620 chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm:620: // animate it out if it's already fully displayed. ...
4 years, 3 months ago (2016-08-23 14:10:41 UTC) #46
Peter Kasting
https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode620 chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm:620: // animate it out if it's already fully displayed. ...
4 years, 3 months ago (2016-08-23 18:57:55 UTC) #47
spqchan
On 2016/08/23 18:57:55, Peter Kasting wrote: > https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm > File chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm (right): > > https://codereview.chromium.org/2119033002/diff/600001/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm#newcode620 ...
4 years, 3 months ago (2016-08-24 01:27:41 UTC) #48
Peter Kasting
On 2016/08/24 01:27:41, spqchan wrote: > Anyway, I added the logic > for the changed ...
4 years, 3 months ago (2016-08-24 03:22:15 UTC) #49
spqchan
On 2016/08/24 03:22:15, Peter Kasting wrote: > On 2016/08/24 01:27:41, spqchan wrote: > > Anyway, ...
4 years, 3 months ago (2016-08-24 03:56:20 UTC) #50
Peter Kasting
On 2016/08/24 03:56:20, spqchan wrote: > On 2016/08/24 03:22:15, Peter Kasting wrote: > > On ...
4 years, 3 months ago (2016-08-24 04:02:02 UTC) #51
Kevin Bailey
On 2016/08/24 04:02:02, Peter Kasting wrote: > > My impression was: > > * When ...
4 years, 3 months ago (2016-08-24 04:19:19 UTC) #52
spqchan
On 2016/08/24 04:02:02, Peter Kasting wrote: > On 2016/08/24 03:56:20, spqchan wrote: > > On ...
4 years, 3 months ago (2016-08-24 04:21:26 UTC) #53
Peter Kasting
On 2016/08/24 04:21:26, spqchan wrote: > For resizing, the security state is different from the ...
4 years, 3 months ago (2016-08-24 05:21:48 UTC) #54
spqchan
On 2016/08/24 05:21:48, Peter Kasting wrote: > On 2016/08/24 04:21:26, spqchan wrote: > > For ...
4 years, 3 months ago (2016-08-29 17:17:02 UTC) #55
Kevin Bailey
On 2016/08/29 17:17:02, spqchan wrote: > > From what I checked, the EV cert gets ...
4 years, 3 months ago (2016-08-29 17:33:07 UTC) #56
spqchan
On 2016/08/29 17:33:07, Kevin Bailey wrote: > On 2016/08/29 17:17:02, spqchan wrote: > > > ...
4 years, 3 months ago (2016-08-29 18:55:19 UTC) #57
Kevin Bailey
On 2016/08/29 18:55:19, spqchan wrote: > > Sorry, I should've been more clear. I was ...
4 years, 3 months ago (2016-08-29 19:48:10 UTC) #58
Peter Kasting
On 2016/08/29 17:17:02, spqchan wrote: > On 2016/08/24 05:21:48, Peter Kasting wrote: > > On ...
4 years, 3 months ago (2016-08-30 01:30:25 UTC) #59
spqchan
On 2016/08/30 01:30:25, Peter Kasting wrote: > On 2016/08/29 17:17:02, spqchan wrote: > > On ...
4 years, 3 months ago (2016-08-31 03:31:26 UTC) #60
Peter Kasting
On 2016/08/31 03:31:26, spqchan wrote: > SlideAnimation would make things cleaner though. However, AFAIK it’s ...
4 years, 3 months ago (2016-08-31 03:47:08 UTC) #61
spqchan
+jochen for components/omnibox_strings.grdp OWNER
4 years, 3 months ago (2016-08-31 17:01:16 UTC) #62
spqchan
+jochen for components/omnibox_strings.grdp OWNER
4 years, 3 months ago (2016-08-31 17:01:28 UTC) #64
spqchan
- Rebased on krb's changes - Removing jochen as reviewer since the string is no ...
4 years, 3 months ago (2016-09-01 01:26:28 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2119033002/800001
4 years, 3 months ago (2016-09-01 01:27:10 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/61971) ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 3 months ago (2016-09-01 01:29:11 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2119033002/820001
4 years, 3 months ago (2016-09-01 18:23:19 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/289248)
4 years, 3 months ago (2016-09-01 20:06:44 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2119033002/860001
4 years, 3 months ago (2016-09-01 22:20:46 UTC) #79
commit-bot: I haz the power
Committed patchset #44 (id:860001)
4 years, 3 months ago (2016-09-01 23:30:44 UTC) #81
commit-bot: I haz the power
4 years, 3 months ago (2016-09-01 23:34:00 UTC) #83
Message was sent while issue was closed.
Patchset 44 (id:??) landed as
https://crrev.com/0afe4deba4f93d82430e90d789ab39e3c788c891
Cr-Commit-Position: refs/heads/master@{#416119}

Powered by Google App Engine
This is Rietveld 408576698