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 1136473006: Don't autofill credit cards on non-secure pages (Closed)

Created:
5 years, 7 months ago by sigbjorn
Modified:
5 years, 5 months ago
CC:
chromium-reviews, estade+watch_chromium.org, browser-components-watch_chromium.org, rouslan+autofillwatch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Don't autofill credit cards on non-secure pages Instead of checking for scheme only when suggesting credit card autofills, ensure that the page is secure. Also add missing tests for storing credit cards (even when submitted on http). Committed: https://crrev.com/337de86ef89076ef6a442acfc6e2904a0827d389 Cr-Commit-Position: refs/heads/master@{#337796}

Patch Set 1 #

Total comments: 3

Patch Set 2 : Default implementation for other OSes #

Total comments: 3

Patch Set 3 : Remove debug code #

Total comments: 9

Patch Set 4 : Use GetLastCommittedEntry #

Total comments: 2

Patch Set 5 : Remove default fallback for IsContextSecure, implement in inherited classes #

Total comments: 4

Patch Set 6 : Nitpick and test run fixes #

Total comments: 4

Patch Set 7 : Remove unnecessary DCHECK #

Patch Set 8 : Blind fix for Android #

Patch Set 9 : [chromium-style] Virtual methods shouldn't be declared inline #

Patch Set 10 : More blind Android fixes #

Patch Set 11 : Blind Android fix #

Total comments: 1

Patch Set 12 : Add comments #

Total comments: 1

Patch Set 13 : Add period #

Unified diffs Side-by-side diffs Delta from patch set Stats (+126 lines, -42 lines) Patch
M android_webview/native/aw_autofill_client.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/native/aw_autofill_client.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +18 lines, -0 lines 0 comments Download
M chrome/browser/ui/autofill/chrome_autofill_client.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/autofill/chrome_autofill_client.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +16 lines, -0 lines 0 comments Download
M components/autofill/core/browser/autofill_client.h View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
M components/autofill/core/browser/autofill_manager.cc View 1 2 3 4 2 chunks +5 lines, -7 lines 0 comments Download
M components/autofill/core/browser/autofill_manager_unittest.cc View 1 2 3 4 5 4 chunks +62 lines, -34 lines 0 comments Download
M components/autofill/core/browser/test_autofill_client.h View 1 2 3 4 5 6 7 8 2 chunks +7 lines, -0 lines 0 comments Download
M components/autofill/core/browser/test_autofill_client.cc View 1 2 3 4 5 6 7 8 2 chunks +5 lines, -1 line 0 comments Download
M ios/chrome/browser/ui/autofill/autofill_client_ios.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M ios/chrome/browser/ui/autofill/autofill_client_ios.mm View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 122 (42 generated)
sigbjorn
Want to review a change to make autofill adhere to the same security standards as ...
5 years, 7 months ago (2015-05-15 08:38:28 UTC) #2
Evan Stade
+palmer (security team member) https://codereview.chromium.org/1136473006/diff/1/components/autofill/core/browser/autofill_manager.cc File components/autofill/core/browser/autofill_manager.cc (left): https://codereview.chromium.org/1136473006/diff/1/components/autofill/core/browser/autofill_manager.cc#oldcode90 components/autofill/core/browser/autofill_manager.cc:90: return form.source_url().SchemeIs(url::kHttpsScheme); we can't just ...
5 years, 7 months ago (2015-05-15 16:54:46 UTC) #4
Evan Stade
https://codereview.chromium.org/1136473006/diff/1/components/autofill/core/browser/autofill_manager.cc File components/autofill/core/browser/autofill_manager.cc (left): https://codereview.chromium.org/1136473006/diff/1/components/autofill/core/browser/autofill_manager.cc#oldcode90 components/autofill/core/browser/autofill_manager.cc:90: return form.source_url().SchemeIs(url::kHttpsScheme); On 2015/05/15 16:54:46, Evan Stade wrote: > ...
5 years, 7 months ago (2015-05-15 16:56:24 UTC) #5
palmer
> > we can't just make this content::IsOriginSecure() or something? > > I mean, I ...
5 years, 7 months ago (2015-05-15 17:56:41 UTC) #6
Evan Stade
On 2015/05/15 17:56:41, palmer wrote: > > > we can't just make this content::IsOriginSecure() or ...
5 years, 7 months ago (2015-05-15 18:51:45 UTC) #7
palmer
> I don't even think that would work because DEPS still bans dependencies on > ...
5 years, 7 months ago (2015-05-15 19:59:50 UTC) #8
Ilya Sherman
On 2015/05/15 19:59:50, palmer wrote: > > I don't even think that would work because ...
5 years, 7 months ago (2015-05-15 20:18:25 UTC) #9
Evan Stade
On 2015/05/15 20:18:25, Ilya Sherman wrote: > On 2015/05/15 19:59:50, palmer wrote: > > > ...
5 years, 7 months ago (2015-05-15 20:50:48 UTC) #10
Evan Stade
https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc File components/autofill/core/browser/autofill_manager.cc (left): https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc#oldcode90 components/autofill/core/browser/autofill_manager.cc:90: return form.source_url().SchemeIs(url::kHttpsScheme); so palmer@, should we just change this ...
5 years, 7 months ago (2015-05-18 18:15:50 UTC) #11
palmer
https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc File components/autofill/core/browser/autofill_manager.cc (left): https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc#oldcode90 components/autofill/core/browser/autofill_manager.cc:90: return form.source_url().SchemeIs(url::kHttpsScheme); > so palmer@, should we just change ...
5 years, 7 months ago (2015-05-18 18:26:19 UTC) #12
Ilya Sherman
https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc File components/autofill/core/browser/autofill_manager.cc (left): https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc#oldcode90 components/autofill/core/browser/autofill_manager.cc:90: return form.source_url().SchemeIs(url::kHttpsScheme); On 2015/05/18 18:15:50, Evan Stade wrote: > ...
5 years, 7 months ago (2015-05-18 18:41:31 UTC) #13
Evan Stade
On 2015/05/18 18:41:31, Ilya Sherman wrote: > https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc > File components/autofill/core/browser/autofill_manager.cc (left): > > https://codereview.chromium.org/1136473006/diff/20001/components/autofill/core/browser/autofill_manager.cc#oldcode90 ...
5 years, 7 months ago (2015-05-18 18:54:46 UTC) #14
Ilya Sherman
On 2015/05/18 18:54:46, Evan Stade wrote: > On 2015/05/18 18:41:31, Ilya Sherman wrote: > > ...
5 years, 7 months ago (2015-05-18 21:19:22 UTC) #15
sigbjorn
Note that this fix has nothing to do with localhost. This fix ensures that credit ...
5 years, 7 months ago (2015-05-19 08:00:43 UTC) #16
Evan Stade
On 2015/05/19 08:00:43, sigbjorn wrote: > Note that this fix has nothing to do with ...
5 years, 7 months ago (2015-05-19 16:47:18 UTC) #18
palmer
> > Any localhost changes are entirely accidental. SchemeIsCryptographic is > > necessary, but not ...
5 years, 7 months ago (2015-05-19 18:36:58 UTC) #19
Evan Stade
On 2015/05/19 18:36:58, palmer wrote: > > > Any localhost changes are entirely accidental. SchemeIsCryptographic ...
5 years, 7 months ago (2015-05-19 21:08:45 UTC) #20
palmer
> > We should probably harmonize the password autofill behavior with the credit > card ...
5 years, 7 months ago (2015-05-19 21:29:11 UTC) #21
sigbjorn
The password manager ensures that the stored origin and the used origin are identical. The ...
5 years, 7 months ago (2015-05-20 06:59:17 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/40001
5 years, 7 months ago (2015-05-22 07:32:35 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/65433)
5 years, 7 months ago (2015-05-22 07:39:18 UTC) #27
sigbjorn
Nobody has spoken up with anything else, so attempted a commit, given the OK above. ...
5 years, 7 months ago (2015-05-22 07:45:46 UTC) #28
Evan Stade
On 2015/05/22 07:45:46, sigbjorn wrote: > Nobody has spoken up with anything else, so attempted ...
5 years, 7 months ago (2015-05-22 16:22:47 UTC) #29
sigbjorn
Ping
5 years, 6 months ago (2015-05-28 08:38:20 UTC) #30
Evan Stade
On 2015/05/28 08:38:20, sigbjorn wrote: > Ping sorry this is taking so long. You should ...
5 years, 6 months ago (2015-05-28 18:21:56 UTC) #31
sigbjorn
On 2015/05/28 18:21:56, Evan Stade wrote: > On 2015/05/28 08:38:20, sigbjorn wrote: > > Ping ...
5 years, 6 months ago (2015-06-02 08:06:04 UTC) #32
sigbjorn
Ping - is silence consent? Nobody has spoken up against this, and I understand the ...
5 years, 6 months ago (2015-06-05 07:15:42 UTC) #33
Evan Stade
On 2015/06/05 07:15:42, sigbjorn wrote: > Ping - is silence consent? > > Nobody has ...
5 years, 6 months ago (2015-06-05 18:58:10 UTC) #34
jww
https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode309 chrome/browser/ui/autofill/chrome_autofill_client.cc:309: bool ChromeAutofillClient::IsContextSecure(const GURL& form_origin) { It seems bad to ...
5 years, 6 months ago (2015-06-08 18:37:35 UTC) #36
jww
On 2015/06/08 18:37:35, jww wrote: > https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc > File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): > > https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode309 > ...
5 years, 6 months ago (2015-06-08 22:09:56 UTC) #39
jww
On 2015/06/08 22:09:56, jww wrote: > On 2015/06/08 18:37:35, jww wrote: > > > https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc ...
5 years, 6 months ago (2015-06-08 22:33:03 UTC) #40
Evan Stade
https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode309 chrome/browser/ui/autofill/chrome_autofill_client.cc:309: bool ChromeAutofillClient::IsContextSecure(const GURL& form_origin) { this param is not ...
5 years, 6 months ago (2015-06-08 22:41:42 UTC) #41
Evan Stade
Is there anything blocking us from using IsOriginSecure right now (in ChromeAutofillClient)? ChromeAutofillClient is not ...
5 years, 6 months ago (2015-06-08 22:51:32 UTC) #42
sigbjorn
On 2015/06/08 22:51:32, Evan Stade wrote: > Is there anything blocking us from using IsOriginSecure ...
5 years, 6 months ago (2015-06-12 11:47:15 UTC) #43
sigbjorn
https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode309 chrome/browser/ui/autofill/chrome_autofill_client.cc:309: bool ChromeAutofillClient::IsContextSecure(const GURL& form_origin) { On 2015/06/08 22:41:42, Evan ...
5 years, 6 months ago (2015-06-12 11:47:54 UTC) #44
jww
On 2015/06/12 11:47:54, sigbjorn wrote: > https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc > File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): > > https://codereview.chromium.org/1136473006/diff/40001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode309 > ...
5 years, 6 months ago (2015-06-12 15:45:20 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/60001
5 years, 6 months ago (2015-06-17 09:39:31 UTC) #48
commit-bot: I haz the power
A disapproval has been posted by following reviewers: estade@chromium.org. Please make sure to get positive ...
5 years, 6 months ago (2015-06-17 09:39:40 UTC) #50
sigbjorn
On 2015/06/17 09:39:40, commit-bot: I haz the power wrote: > A disapproval has been posted ...
5 years, 6 months ago (2015-06-19 13:56:26 UTC) #51
Ilya Sherman
On 2015/06/19 13:56:26, sigbjorn wrote: > On 2015/06/17 09:39:40, commit-bot: I haz the power wrote: ...
5 years, 6 months ago (2015-06-19 19:51:11 UTC) #52
Evan Stade
thanks for sticking with this for so long https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h File components/autofill/core/browser/autofill_client.h (right): https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h#newcode182 components/autofill/core/browser/autofill_client.h:182: return ...
5 years, 6 months ago (2015-06-25 23:54:58 UTC) #53
sigbjorn
https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h File components/autofill/core/browser/autofill_client.h (right): https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h#newcode182 components/autofill/core/browser/autofill_client.h:182: return form_origin.SchemeIsCryptographic(); On 2015/06/25 23:54:57, Evan Stade wrote: > ...
5 years, 6 months ago (2015-06-26 07:30:44 UTC) #54
Evan Stade
On 2015/06/26 07:30:44, sigbjorn wrote: > https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h > File components/autofill/core/browser/autofill_client.h (right): > > https://codereview.chromium.org/1136473006/diff/60001/components/autofill/core/browser/autofill_client.h#newcode182 > ...
5 years, 6 months ago (2015-06-26 14:17:30 UTC) #55
sigbjorn
Sorry about rebase getting mixed up with my latest changes. My changes are in the ...
5 years, 5 months ago (2015-06-29 10:15:25 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/80001
5 years, 5 months ago (2015-06-29 10:15:48 UTC) #60
commit-bot: I haz the power
A disapproval has been posted by following reviewers: estade@chromium.org. Please make sure to get positive ...
5 years, 5 months ago (2015-06-29 10:15:57 UTC) #62
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/80001
5 years, 5 months ago (2015-06-29 17:36:55 UTC) #64
Evan Stade
LG after nits are fixed. I've sent the CL to the try bots. https://codereview.chromium.org/1136473006/diff/80001/components/autofill/core/browser/test_autofill_client.h File ...
5 years, 5 months ago (2015-06-29 17:38:54 UTC) #65
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/39991)
5 years, 5 months ago (2015-06-29 17:54:30 UTC) #67
sigbjorn
https://codereview.chromium.org/1136473006/diff/80001/components/autofill/core/browser/test_autofill_client.h File components/autofill/core/browser/test_autofill_client.h (right): https://codereview.chromium.org/1136473006/diff/80001/components/autofill/core/browser/test_autofill_client.h#newcode59 components/autofill/core/browser/test_autofill_client.h:59: bool IsContextSecure(const GURL& form_origin) override; On 2015/06/29 17:38:54, Evan ...
5 years, 5 months ago (2015-06-30 07:12:13 UTC) #68
Evan Stade
https://codereview.chromium.org/1136473006/diff/80001/components/autofill/core/browser/test_autofill_client.h File components/autofill/core/browser/test_autofill_client.h (right): https://codereview.chromium.org/1136473006/diff/80001/components/autofill/core/browser/test_autofill_client.h#newcode59 components/autofill/core/browser/test_autofill_client.h:59: bool IsContextSecure(const GURL& form_origin) override; On 2015/06/30 07:12:13, sigbjorn ...
5 years, 5 months ago (2015-06-30 15:47:13 UTC) #69
Evan Stade
lgtm
5 years, 5 months ago (2015-06-30 15:48:13 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/100001
5 years, 5 months ago (2015-06-30 15:49:14 UTC) #73
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/74956)
5 years, 5 months ago (2015-06-30 15:57:37 UTC) #75
boliu
https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc File android_webview/native/aw_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc#newcode184 android_webview/native/aw_autofill_client.cc:184: // TODO (sigbjorn): Return if the context is secure, ...
5 years, 5 months ago (2015-06-30 16:20:06 UTC) #76
sigbjorn
https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc File android_webview/native/aw_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc#newcode184 android_webview/native/aw_autofill_client.cc:184: // TODO (sigbjorn): Return if the context is secure, ...
5 years, 5 months ago (2015-07-01 07:28:14 UTC) #78
bondd
On 2015/07/01 07:28:14, sigbjorn wrote: > https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc > File android_webview/native/aw_autofill_client.cc (right): > > https://codereview.chromium.org/1136473006/diff/100001/android_webview/native/aw_autofill_client.cc#newcode184 > ...
5 years, 5 months ago (2015-07-01 22:07:42 UTC) #79
bondd
https://codereview.chromium.org/1136473006/diff/100001/chrome/browser/ui/autofill/chrome_autofill_client.cc File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/100001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode316 chrome/browser/ui/autofill/chrome_autofill_client.cc:316: if (!navigation_entry) AFAIK checking for DCHECK() failure like this ...
5 years, 5 months ago (2015-07-01 22:16:51 UTC) #80
jww
https://codereview.chromium.org/1136473006/diff/100001/chrome/browser/ui/autofill/chrome_autofill_client.cc File chrome/browser/ui/autofill/chrome_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/100001/chrome/browser/ui/autofill/chrome_autofill_client.cc#newcode316 chrome/browser/ui/autofill/chrome_autofill_client.cc:316: if (!navigation_entry) On 2015/07/01 22:16:50, bondd wrote: > AFAIK ...
5 years, 5 months ago (2015-07-01 22:25:46 UTC) #81
sigbjorn
On 2015/07/01 22:07:42, bondd wrote: > Hi sigbjorn, unfortunately I am not very familiar with ...
5 years, 5 months ago (2015-07-02 14:46:39 UTC) #82
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/140001
5 years, 5 months ago (2015-07-02 14:58:49 UTC) #85
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/41434)
5 years, 5 months ago (2015-07-02 15:09:44 UTC) #87
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/160001
5 years, 5 months ago (2015-07-02 15:16:06 UTC) #90
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/android_clang_dbg_recipe/builds/93020) (exceeded global ...
5 years, 5 months ago (2015-07-02 15:35:43 UTC) #92
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/180001
5 years, 5 months ago (2015-07-03 08:05:25 UTC) #95
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_android_rel_ng/builds/40684) (exceeded global ...
5 years, 5 months ago (2015-07-03 08:21:30 UTC) #97
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/200001
5 years, 5 months ago (2015-07-03 08:25:41 UTC) #100
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 5 months ago (2015-07-03 10:43:35 UTC) #102
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/200001
5 years, 5 months ago (2015-07-06 07:46:01 UTC) #104
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/75989)
5 years, 5 months ago (2015-07-06 07:54:14 UTC) #106
sigbjorn
Missing LGTM from an OWNER for these files: android_webview/native/aw_autofill_client.cc android_webview/native/aw_autofill_client.h ios/chrome/browser/ui/autofill/autofill_client_ios.h ios/chrome/browser/ui/autofill/autofill_client_ios.mm
5 years, 5 months ago (2015-07-06 08:37:37 UTC) #107
boliu
lgtm % comment https://codereview.chromium.org/1136473006/diff/200001/android_webview/native/aw_autofill_client.cc File android_webview/native/aw_autofill_client.cc (right): https://codereview.chromium.org/1136473006/diff/200001/android_webview/native/aw_autofill_client.cc#newcode186 android_webview/native/aw_autofill_client.cc:186: content::SSLStatus ssl_status; can you add a ...
5 years, 5 months ago (2015-07-06 17:56:07 UTC) #108
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/220001
5 years, 5 months ago (2015-07-07 07:51:28 UTC) #111
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/76348)
5 years, 5 months ago (2015-07-07 07:58:16 UTC) #113
sigbjorn
dconnelly / jdonnelly? Missing LGTM from an OWNER for these files: ios/chrome/browser/ui/autofill/autofill_client_ios.h ios/chrome/browser/ui/autofill/autofill_client_ios.mm
5 years, 5 months ago (2015-07-07 08:02:22 UTC) #115
Justin Donnelly
lgtm with nit https://codereview.chromium.org/1136473006/diff/220001/ios/chrome/browser/ui/autofill/autofill_client_ios.mm File ios/chrome/browser/ui/autofill/autofill_client_ios.mm (right): https://codereview.chromium.org/1136473006/diff/220001/ios/chrome/browser/ui/autofill/autofill_client_ios.mm#newcode157 ios/chrome/browser/ui/autofill/autofill_client_ios.mm:157: // the form_origin. See crbug.com/505388 Add ...
5 years, 5 months ago (2015-07-07 14:18:16 UTC) #116
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1136473006/240001
5 years, 5 months ago (2015-07-08 09:18:13 UTC) #119
commit-bot: I haz the power
Committed patchset #13 (id:240001)
5 years, 5 months ago (2015-07-08 10:11:23 UTC) #120
commit-bot: I haz the power
Patchset 13 (id:??) landed as https://crrev.com/337de86ef89076ef6a442acfc6e2904a0827d389 Cr-Commit-Position: refs/heads/master@{#337796}
5 years, 5 months ago (2015-07-08 10:12:11 UTC) #121
Evan Stade
5 years, 5 months ago (2015-07-08 21:05:53 UTC) #122
Message was sent while issue was closed.
On 2015/07/08 10:12:11, commit-bot: I haz the power wrote:
> Patchset 13 (id:??) landed as
> https://crrev.com/337de86ef89076ef6a442acfc6e2904a0827d389
> Cr-Commit-Position: refs/heads/master@{#337796}

woohoo! Thanks for sticking with this CL and seeing it through to everyone's
satisfaction.

Powered by Google App Engine
This is Rietveld 408576698