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

Issue 1098843004: Omnibox - Do Not Allow HTTP/HTTPS Equivalence if User Explicitly Entered A Scheme (Closed)

Created:
5 years, 8 months ago by Mark P
Modified:
5 years, 5 months ago
Reviewers:
brettw, Peter Kasting
CC:
chromium-reviews, James Su
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Omnibox - Do Not Allow HTTP/HTTPS Equivalence if User Explicitly Entered A Scheme The dup elimination code is forgiving about schemes. In particular, dup-elimination considers http and https equivalent. If the user explicitly enters a scheme, this is not correct. In these cases, we should treat these schemes as distinct. (Actually, we can probably treat these schemes as equivalent if the user explicitly enters a non-http, non-https scheme. However, I'm not sure this nuance is worth the extra code, so I coded the simple solution.) BUG=430722 Committed: https://crrev.com/4923cab672e256801d4b9efb904fef4c5fbf6f15 Cr-Commit-Position: refs/heads/master@{#336885}

Patch Set 1 #

Patch Set 2 : new approach #

Total comments: 4

Patch Set 3 : no equivalence across schemes if any scheme is present #

Total comments: 14

Patch Set 4 : peter's comments, slight refactoringpeter's comments, slight refactoring #

Total comments: 38

Patch Set 5 : refactored, as discussed #

Total comments: 39

Patch Set 6 : revise logic #

Total comments: 14

Patch Set 7 : utf16->utf8, plus other minor comments #

Total comments: 7

Patch Set 8 : ASCII -> UTF8 #

Patch Set 9 : forgot string implementation #

Patch Set 10 : add tests; also rebase #

Patch Set 11 : rebase (not yet verified the rebase was done correctly) #

Patch Set 12 : use StartsWithASCII #

Total comments: 2

Patch Set 13 : new versions of ASCII comparisons #

Patch Set 14 : finish rebase correctly #

Patch Set 15 : rebase #

Patch Set 16 : fix rebase error #

Patch Set 17 : add log lines for debugging #

Patch Set 18 : revise test cases to be correct #

Total comments: 2

Patch Set 19 : .cc -> .h #

Patch Set 20 : add IDN support #

Patch Set 21 : cleanup omnibox_edit_model #

Patch Set 22 : possible fix for mac code (cannot compile mac code myself) #

Total comments: 22

Patch Set 23 : final? API changes #

Total comments: 6

Patch Set 24 : peter's comments #

Patch Set 25 : rebase #

Patch Set 26 : re-add string_split.h #

Patch Set 27 : fix browsertests compile error (sigh) #

Unified diffs Side-by-side diffs Delta from patch set Stats (+255 lines, -40 lines) Patch
M chrome/browser/autocomplete/history_url_provider_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 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/autocomplete/search_provider_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 1 chunk +12 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.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 1 chunk +1 line, -0 lines 0 comments Download
M components/omnibox/autocomplete_controller.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 2 chunks +4 lines, -2 lines 0 comments Download
M components/omnibox/autocomplete_input.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +10 lines, -0 lines 0 comments Download
M components/omnibox/autocomplete_input.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 +32 lines, -0 lines 0 comments Download
M components/omnibox/autocomplete_match.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 1 chunk +21 lines, -8 lines 0 comments Download
M components/omnibox/autocomplete_match.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 +62 lines, -7 lines 0 comments Download
M components/omnibox/autocomplete_match_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 2 chunks +72 lines, -0 lines 0 comments Download
M components/omnibox/autocomplete_result.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +2 lines, -0 lines 0 comments Download
M components/omnibox/autocomplete_result.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 3 chunks +4 lines, -2 lines 0 comments Download
M components/omnibox/autocomplete_result_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 9 chunks +11 lines, -11 lines 0 comments Download
M components/omnibox/history_quick_provider.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, -2 lines 0 comments Download
M components/omnibox/search_provider.cc 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 components/omnibox/shortcuts_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +15 lines, -5 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 78 (13 generated)
Mark P
Peter, Though it touches many files, this is surprisingly simple change. Take a look at ...
5 years, 8 months ago (2015-04-24 22:43:23 UTC) #2
Peter Kasting
https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h File components/omnibox/autocomplete_match.h (right): https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h#newcode177 components/omnibox/autocomplete_match.h:177: // Returns |url| altered by stripping off "www.", converting ...
5 years, 8 months ago (2015-04-25 00:03:12 UTC) #3
Mark P
https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h File components/omnibox/autocomplete_match.h (right): https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h#newcode177 components/omnibox/autocomplete_match.h:177: // Returns |url| altered by stripping off "www.", converting ...
5 years, 7 months ago (2015-04-27 22:26:05 UTC) #4
Peter Kasting
On 2015/04/27 22:26:05, Mark P wrote: > https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h > File components/omnibox/autocomplete_match.h (right): > > https://codereview.chromium.org/1098843004/diff/20001/components/omnibox/autocomplete_match.h#newcode177 ...
5 years, 7 months ago (2015-04-27 23:53:47 UTC) #5
Mark P
On 2015/04/27 23:53:47, Peter Kasting wrote: > On 2015/04/27 22:26:05, Mark P wrote: > > ...
5 years, 7 months ago (2015-05-25 20:49:03 UTC) #6
Peter Kasting
On 2015/05/25 20:49:03, Mark P wrote: > I think I'm going to be slightly for ...
5 years, 7 months ago (2015-05-26 20:38:28 UTC) #7
Mark P
On 2015/05/26 20:38:28, Peter Kasting wrote: > On 2015/05/25 20:49:03, Mark P wrote: > > ...
5 years, 6 months ago (2015-05-27 17:14:45 UTC) #8
Peter Kasting
On 2015/05/27 17:14:45, Mark P wrote: > On 2015/05/26 20:38:28, Peter Kasting wrote: > > ...
5 years, 6 months ago (2015-05-27 18:07:42 UTC) #9
Mark P
On 2015/05/27 18:07:42, Peter Kasting wrote: > On 2015/05/27 17:14:45, Mark P wrote: > > ...
5 years, 6 months ago (2015-05-27 18:45:24 UTC) #10
Mark P
So, I implemented this change as we discussed: if the user enters https://blah somewhere in ...
5 years, 6 months ago (2015-05-30 17:10:08 UTC) #11
Peter Kasting
On 2015/05/30 17:10:08, Mark P (out sick) wrote: > If the user enters an explicit ...
5 years, 6 months ago (2015-05-31 11:29:45 UTC) #12
Mark P
This is again ready for review. It's likely best to review it from scratch; it's ...
5 years, 6 months ago (2015-06-01 17:47:03 UTC) #13
Peter Kasting
https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc File chrome/browser/autocomplete/history_quick_provider.cc (right): https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc#newcode274 chrome/browser/autocomplete/history_quick_provider.cc:274: base::SplitString(autocomplete_input_.text(), ' ', &words); I'm concerned about all these ...
5 years, 6 months ago (2015-06-01 21:04:08 UTC) #14
Mark P
https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc File chrome/browser/autocomplete/history_quick_provider.cc (right): https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc#newcode274 chrome/browser/autocomplete/history_quick_provider.cc:274: base::SplitString(autocomplete_input_.text(), ' ', &words); On 2015/06/01 21:04:08, Peter Kasting ...
5 years, 6 months ago (2015-06-01 22:05:50 UTC) #15
Peter Kasting
https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc File chrome/browser/autocomplete/history_quick_provider.cc (right): https://codereview.chromium.org/1098843004/diff/40001/chrome/browser/autocomplete/history_quick_provider.cc#newcode274 chrome/browser/autocomplete/history_quick_provider.cc:274: base::SplitString(autocomplete_input_.text(), ' ', &words); On 2015/06/01 22:05:50, Mark P ...
5 years, 6 months ago (2015-06-01 22:21:58 UTC) #16
Mark P
Peter, This version should appeal better to your sense of aesthetics. Please take a look. ...
5 years, 6 months ago (2015-06-04 23:31:31 UTC) #17
Peter Kasting
https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/history_url_provider_unittest.cc File chrome/browser/autocomplete/history_url_provider_unittest.cc (right): https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/history_url_provider_unittest.cc#newcode323 chrome/browser/autocomplete/history_url_provider_unittest.cc:323: for (ACMatches::iterator i = matches_.begin(); i != matches_.end(); ++i) ...
5 years, 6 months ago (2015-06-06 01:31:24 UTC) #18
Mark P
Comments in response to your comments; no code changes here. --mark https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc File chrome/browser/autocomplete/shortcuts_provider.cc (right): ...
5 years, 6 months ago (2015-06-06 17:10:12 UTC) #19
Peter Kasting
https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc File chrome/browser/autocomplete/shortcuts_provider.cc (right): https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc#newcode148 chrome/browser/autocomplete/shortcuts_provider.cc:148: base::SplitString(input.text(), ' ', &words); On 2015/06/06 17:10:11, Mark P ...
5 years, 6 months ago (2015-06-06 18:38:16 UTC) #20
Mark P
Additional comments, mostly wrapping up the conclusions. --mark https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc File chrome/browser/autocomplete/shortcuts_provider.cc (right): https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc#newcode148 chrome/browser/autocomplete/shortcuts_provider.cc:148: base::SplitString(input.text(), ...
5 years, 6 months ago (2015-06-06 20:23:07 UTC) #21
Peter Kasting
https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc File chrome/browser/autocomplete/shortcuts_provider.cc (right): https://codereview.chromium.org/1098843004/diff/60001/chrome/browser/autocomplete/shortcuts_provider.cc#newcode148 chrome/browser/autocomplete/shortcuts_provider.cc:148: base::SplitString(input.text(), ' ', &words); On 2015/06/06 20:23:06, Mark P ...
5 years, 6 months ago (2015-06-08 20:26:59 UTC) #22
Mark P
I refactored this as we discussed. I think the comments could use some work; some ...
5 years, 6 months ago (2015-06-09 19:29:38 UTC) #23
Peter Kasting
https://codereview.chromium.org/1098843004/diff/80001/chrome/browser/autocomplete/shortcuts_provider.cc File chrome/browser/autocomplete/shortcuts_provider.cc (right): https://codereview.chromium.org/1098843004/diff/80001/chrome/browser/autocomplete/shortcuts_provider.cc#newcode161 chrome/browser/autocomplete/shortcuts_provider.cc:161: // to mail.google.com, so typing "m" will return them ...
5 years, 6 months ago (2015-06-09 20:36:39 UTC) #24
Mark P
My computer is agonizingly slow for some reason right now so I haven't ran the ...
5 years, 6 months ago (2015-06-10 23:38:35 UTC) #25
Peter Kasting
https://codereview.chromium.org/1098843004/diff/80001/components/omnibox/autocomplete_input.cc File components/omnibox/autocomplete_input.cc (right): https://codereview.chromium.org/1098843004/diff/80001/components/omnibox/autocomplete_input.cc#newcode38 components/omnibox/autocomplete_input.cc:38: const base::string16& http_scheme = On 2015/06/10 23:38:34, Mark P ...
5 years, 6 months ago (2015-06-11 00:07:39 UTC) #26
Peter Kasting
(I really would rather convert to UTF-8 than UTF-16, here's some other comments though.) https://codereview.chromium.org/1098843004/diff/100001/components/omnibox/autocomplete_input.cc ...
5 years, 6 months ago (2015-06-11 05:21:44 UTC) #27
Mark P
Hopefully now we're almost done. I plan to rebase this after https://codereview.chromium.org/1169173005/ (which I just ...
5 years, 6 months ago (2015-06-11 22:11:42 UTC) #28
Peter Kasting
Almost done. https://codereview.chromium.org/1098843004/diff/120001/components/omnibox/autocomplete_match.cc File components/omnibox/autocomplete_match.cc (right): https://codereview.chromium.org/1098843004/diff/120001/components/omnibox/autocomplete_match.cc#newcode41 components/omnibox/autocomplete_match.cc:41: strlen(url::kStandardSchemeSeparator)); You may want to do something ...
5 years, 6 months ago (2015-06-11 23:00:15 UTC) #29
Mark P
https://codereview.chromium.org/1098843004/diff/120001/components/omnibox/autocomplete_input.cc File components/omnibox/autocomplete_input.cc (right): https://codereview.chromium.org/1098843004/diff/120001/components/omnibox/autocomplete_input.cc#newcode50 components/omnibox/autocomplete_input.cc:50: if (StartsWithASCII(term, prefix, false) && This can still be ...
5 years, 6 months ago (2015-06-12 20:23:20 UTC) #30
Peter Kasting
Adding Brett for string_util question since he's in the midst of touching these separately. Brett, ...
5 years, 6 months ago (2015-06-15 20:47:16 UTC) #32
Mark P
brettw@, this is waiting in your review of the strings stuff. pkasting@, FYI I added ...
5 years, 6 months ago (2015-06-15 23:37:17 UTC) #33
brettw
If you sync you will notice StartsWith changed all around. Have you tested your version? ...
5 years, 6 months ago (2015-06-19 21:26:03 UTC) #34
Mark P
pkasting: I thought a bit more about this and think StartsWithASCII is all I need. ...
5 years, 6 months ago (2015-06-22 17:41:04 UTC) #35
brettw
https://codereview.chromium.org/1098843004/diff/220001/components/omnibox/autocomplete_input.cc File components/omnibox/autocomplete_input.cc (right): https://codereview.chromium.org/1098843004/diff/220001/components/omnibox/autocomplete_input.cc#newcode51 components/omnibox/autocomplete_input.cc:51: if (base::StartsWithASCII(term, prefix, false) && Can you use the ...
5 years, 6 months ago (2015-06-22 17:54:01 UTC) #36
Mark P
https://codereview.chromium.org/1098843004/diff/220001/components/omnibox/autocomplete_input.cc File components/omnibox/autocomplete_input.cc (right): https://codereview.chromium.org/1098843004/diff/220001/components/omnibox/autocomplete_input.cc#newcode51 components/omnibox/autocomplete_input.cc:51: if (base::StartsWithASCII(term, prefix, false) && On 2015/06/22 17:54:01, brettw ...
5 years, 6 months ago (2015-06-22 17:59:36 UTC) #37
brettw
Thanks. I'm not planning a real review so don't block on me.
5 years, 6 months ago (2015-06-22 18:24:30 UTC) #38
Peter Kasting
On 2015/06/22 17:41:04, Mark P wrote: > Then, once we have "bl" or "blah.com/a", we're ...
5 years, 6 months ago (2015-06-22 21:07:41 UTC) #39
brettw
On 2015/06/22 21:07:41, Peter Kasting wrote: > On 2015/06/22 17:41:04, Mark P wrote: > > ...
5 years, 6 months ago (2015-06-22 21:31:34 UTC) #40
Peter Kasting
On 2015/06/22 21:31:34, brettw wrote: > On 2015/06/22 21:07:41, Peter Kasting wrote: > > On ...
5 years, 6 months ago (2015-06-22 21:39:14 UTC) #41
Mark P
On Mon, Jun 22, 2015 at 2:39 PM, <pkasting@chromium.org> wrote: > On 2015/06/22 21:31:34, brettw ...
5 years, 6 months ago (2015-06-22 22:20:28 UTC) #42
Peter Kasting
On 2015/06/22 22:20:28, Mark P wrote: > On Mon, Jun 22, 2015 at 2:39 PM, ...
5 years, 6 months ago (2015-06-22 22:25:19 UTC) #43
Mark P
On Mon, Jun 22, 2015 at 3:25 PM, <pkasting@chromium.org> wrote: > On 2015/06/22 22:20:28, Mark ...
5 years, 6 months ago (2015-06-22 22:30:56 UTC) #44
Peter Kasting
I'm just proposing adding an unescape call. It's hard for me to understand how that's ...
5 years, 6 months ago (2015-06-22 23:04:56 UTC) #45
Mark P
pkasting@, As a person who's played with compiler flags before, perhaps you can help me ...
5 years, 6 months ago (2015-06-25 21:22:35 UTC) #46
Peter Kasting
Try adding BASE_EXPORT to all the function definitions in utf_string_conversions.cc that are declared that way ...
5 years, 6 months ago (2015-06-25 22:25:48 UTC) #47
brettw
I don't think you did anything wrong. Try running the bots again.
5 years, 6 months ago (2015-06-25 22:43:50 UTC) #48
Mark P
On 2015/06/25 22:43:50, brettw wrote: > I don't think you did anything wrong. Try running ...
5 years, 6 months ago (2015-06-25 23:29:03 UTC) #49
Peter Kasting
On 2015/06/25 23:29:03, Mark P wrote: > On 2015/06/25 22:43:50, brettw wrote: > > I ...
5 years, 6 months ago (2015-06-25 23:35:03 UTC) #50
brettw
https://codereview.chromium.org/1098843004/diff/340001/components/omnibox/autocomplete_match_unittest.cc File components/omnibox/autocomplete_match_unittest.cc (right): https://codereview.chromium.org/1098843004/diff/340001/components/omnibox/autocomplete_match_unittest.cc#newcode8 components/omnibox/autocomplete_match_unittest.cc:8: #include "base/strings/utf_string_conversions.cc" Ah, your problem is you included a ...
5 years, 6 months ago (2015-06-26 04:43:18 UTC) #51
Mark P
https://codereview.chromium.org/1098843004/diff/340001/components/omnibox/autocomplete_match_unittest.cc File components/omnibox/autocomplete_match_unittest.cc (right): https://codereview.chromium.org/1098843004/diff/340001/components/omnibox/autocomplete_match_unittest.cc#newcode8 components/omnibox/autocomplete_match_unittest.cc:8: #include "base/strings/utf_string_conversions.cc" On 2015/06/26 04:43:18, brettw wrote: > Ah, ...
5 years, 6 months ago (2015-06-26 04:46:59 UTC) #52
Mark P
On 2015/06/22 23:04:56, Peter Kasting wrote: > I'm just proposing adding an unescape call. It's ...
5 years, 5 months ago (2015-06-26 22:45:03 UTC) #53
Mark P
On 2015/06/26 22:45:03, Mark P wrote: > On 2015/06/22 23:04:56, Peter Kasting wrote: > > ...
5 years, 5 months ago (2015-06-26 23:00:22 UTC) #54
Peter Kasting
https://codereview.chromium.org/1098843004/diff/420001/chrome/browser/autocomplete/autocomplete_provider_unittest.cc File chrome/browser/autocomplete/autocomplete_provider_unittest.cc (right): https://codereview.chromium.org/1098843004/diff/420001/chrome/browser/autocomplete/autocomplete_provider_unittest.cc#newcode234 chrome/browser/autocomplete/autocomplete_provider_unittest.cc:234: scoped_ptr<AutocompleteProviderClient> client_; Nit: Does this need to be a ...
5 years, 5 months ago (2015-06-29 05:04:59 UTC) #55
Mark P
I'm sorry this changelist has been so sloppy. I've been distracted lately. --mark https://codereview.chromium.org/1098843004/diff/420001/chrome/browser/autocomplete/autocomplete_provider_unittest.cc File ...
5 years, 5 months ago (2015-06-30 04:23:17 UTC) #56
Peter Kasting
LGTM https://codereview.chromium.org/1098843004/diff/440001/components/omnibox/autocomplete_match.cc File components/omnibox/autocomplete_match.cc (right): https://codereview.chromium.org/1098843004/diff/440001/components/omnibox/autocomplete_match.cc#newcode55 components/omnibox/autocomplete_match.cc:55: // for international (punycode) domain names. I bet ...
5 years, 5 months ago (2015-06-30 06:50:31 UTC) #57
Mark P
https://codereview.chromium.org/1098843004/diff/440001/components/omnibox/autocomplete_match.cc File components/omnibox/autocomplete_match.cc (right): https://codereview.chromium.org/1098843004/diff/440001/components/omnibox/autocomplete_match.cc#newcode55 components/omnibox/autocomplete_match.cc:55: // for international (punycode) domain names. On 2015/06/30 06:50:30, ...
5 years, 5 months ago (2015-06-30 17:29:21 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1098843004/460001
5 years, 5 months ago (2015-06-30 17:30:50 UTC) #61
commit-bot: I haz the power
Exceeded global retry quota
5 years, 5 months ago (2015-06-30 17:36:01 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1098843004/480001
5 years, 5 months ago (2015-06-30 18:12:13 UTC) #66
commit-bot: I haz the power
Exceeded global retry quota
5 years, 5 months ago (2015-06-30 18:20:39 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1098843004/500001
5 years, 5 months ago (2015-06-30 19:50:21 UTC) #71
commit-bot: I haz the power
Exceeded global retry quota
5 years, 5 months ago (2015-06-30 20:05:03 UTC) #73
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1098843004/520001
5 years, 5 months ago (2015-06-30 21:09:15 UTC) #76
commit-bot: I haz the power
Committed patchset #27 (id:520001)
5 years, 5 months ago (2015-06-30 21:58:04 UTC) #77
commit-bot: I haz the power
5 years, 5 months ago (2015-06-30 21:58:50 UTC) #78
Message was sent while issue was closed.
Patchset 27 (id:??) landed as
https://crrev.com/4923cab672e256801d4b9efb904fef4c5fbf6f15
Cr-Commit-Position: refs/heads/master@{#336885}

Powered by Google App Engine
This is Rietveld 408576698