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

Issue 2839023003: WebView autofill implementation (Closed)

Created:
3 years, 8 months ago by michaelbai
Modified:
3 years, 6 months ago
CC:
chromium-reviews, jam, blundell+watchlist_chromium.org, droger+watchlist_chromium.org, rouslan+autofill_chromium.org, rogerm+autofillwatch_chromium.org, sebsg+autofillwatch_chromium.org, sdefresne+watchlist_chromium.org, browser-components-watch_chromium.org, mathp+autofillwatch_chromium.org, darin-cc_chromium.org, agrieve+watch_chromium.org, vabr+watchlistautofill_chromium.org, estade+watch_chromium.org, android-webview-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

WebView autofill implementation WebView autofill implementation doesn't use chrome's autofill service and UI, instead, it use autofill service in Android platform to get form autofilled. BUG=693204 Review-Url: https://codereview.chromium.org/2839023003 Cr-Commit-Position: refs/heads/master@{#476389} Committed: https://chromium.googlesource.com/chromium/src/+/927a09ab04f76ed68c8a1940992381fe8cc33def

Patch Set 1 #

Total comments: 24

Patch Set 2 : address commnets #

Patch Set 3 : fix coordinates #

Total comments: 17

Patch Set 4 : address comments #

Total comments: 11

Patch Set 5 : address comments #

Total comments: 3

Patch Set 6 : address comments #

Patch Set 7 : sync #

Patch Set 8 : Refactoring AutofillManager #

Total comments: 97

Patch Set 9 : address comments #

Total comments: 2

Patch Set 10 : address comments #

Total comments: 6

Patch Set 11 : address comments #

Patch Set 12 : sync #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1462 lines, -148 lines) Patch
M android_webview/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/browser/DEPS View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/browser/aw_contents.h View 1 2 3 4 5 6 7 8 9 10 11 5 chunks +11 lines, -3 lines 0 comments Download
M android_webview/browser/aw_contents.cc View 1 2 3 4 5 6 7 8 9 10 11 5 chunks +28 lines, -6 lines 0 comments Download
M android_webview/glue/glue.gni View 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/glue/java/DEPS View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java View 4 chunks +11 lines, -3 lines 0 comments Download
M android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +6 lines, -0 lines 0 comments Download
M android_webview/java/src/org/chromium/android_webview/AwContents.java View 1 2 3 4 5 6 7 8 9 10 11 9 chunks +27 lines, -4 lines 0 comments Download
M chrome/browser/autofill/content_autofill_driver_browsertest.cc View 1 2 3 4 5 6 7 1 chunk +5 lines, -5 lines 0 comments Download
M components/autofill/android/BUILD.gn View 1 2 3 4 5 6 2 chunks +29 lines, -0 lines 0 comments Download
A + components/autofill/android/DEPS View 1 2 3 4 5 6 7 1 chunk +1 line, -2 lines 0 comments Download
A components/autofill/android/autofill_provider_android.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +70 lines, -0 lines 0 comments Download
A components/autofill/android/autofill_provider_android.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +196 lines, -0 lines 0 comments Download
A components/autofill/android/form_data_android.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +63 lines, -0 lines 0 comments Download
A components/autofill/android/form_data_android.cc View 1 2 3 4 5 6 7 8 1 chunk +102 lines, -0 lines 0 comments Download
A components/autofill/android/form_field_data_android.h View 1 2 3 4 5 6 7 8 1 chunk +35 lines, -0 lines 0 comments Download
A components/autofill/android/form_field_data_android.cc View 1 2 3 4 5 6 7 8 1 chunk +76 lines, -0 lines 0 comments Download
A components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java View 1 2 3 4 5 6 7 8 1 chunk +120 lines, -0 lines 0 comments Download
A components/autofill/android/java/src/org/chromium/components/autofill/FormData.java View 1 2 3 4 5 6 7 8 1 chunk +52 lines, -0 lines 0 comments Download
A components/autofill/android/java/src/org/chromium/components/autofill/FormFieldData.java View 1 2 3 4 5 6 7 8 1 chunk +57 lines, -0 lines 0 comments Download
M components/autofill/content/browser/content_autofill_driver.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +13 lines, -6 lines 0 comments Download
M components/autofill/content/browser/content_autofill_driver.cc View 1 2 3 4 5 6 7 8 5 chunks +33 lines, -22 lines 0 comments Download
M components/autofill/content/browser/content_autofill_driver_factory.h View 1 2 3 4 5 6 3 chunks +12 lines, -1 line 0 comments Download
M components/autofill/content/browser/content_autofill_driver_factory.cc View 1 2 3 4 5 6 4 chunks +19 lines, -6 lines 0 comments Download
M components/autofill/content/browser/content_autofill_driver_unittest.cc View 1 2 3 4 5 6 7 1 chunk +5 lines, -1 line 0 comments Download
M components/autofill/core/browser/BUILD.gn View 1 2 3 4 5 6 7 2 chunks +6 lines, -0 lines 0 comments Download
A components/autofill/core/browser/autofill_handler.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +126 lines, -0 lines 0 comments Download
A components/autofill/core/browser/autofill_handler.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +55 lines, -0 lines 0 comments Download
A components/autofill/core/browser/autofill_handler_proxy.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +66 lines, -0 lines 0 comments Download
A components/autofill/core/browser/autofill_handler_proxy.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +70 lines, -0 lines 0 comments Download
M components/autofill/core/browser/autofill_manager.h View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +26 lines, -46 lines 0 comments Download
M components/autofill/core/browser/autofill_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 20 chunks +31 lines, -43 lines 0 comments Download
A components/autofill/core/browser/autofill_provider.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +55 lines, -0 lines 0 comments Download
A components/autofill/core/browser/autofill_provider.cc View 1 2 3 4 5 6 7 1 chunk +22 lines, -0 lines 0 comments Download
M components/autofill/core/common/form_data.h View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M components/autofill/core/common/form_data.cc View 1 chunk +13 lines, -0 lines 0 comments Download
M components/autofill/core/common/form_field_data.h View 1 chunk +7 lines, -0 lines 0 comments Download
M components/autofill/core/common/form_field_data.cc View 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 81 (25 generated)
michaelbai
PTAL
3 years, 8 months ago (2017-04-26 01:24:56 UTC) #3
sgurun-gerrit only
I just started looking, but one important comment below: https://codereview.chromium.org/2839023003/diff/1/android_webview/java/src/org/chromium/android_webview/AwSettings.java File android_webview/java/src/org/chromium/android_webview/AwSettings.java (right): https://codereview.chromium.org/2839023003/diff/1/android_webview/java/src/org/chromium/android_webview/AwSettings.java#newcode111 android_webview/java/src/org/chromium/android_webview/AwSettings.java:111: ...
3 years, 7 months ago (2017-04-27 21:51:44 UTC) #4
sgurun-gerrit only
some more comments below. https://codereview.chromium.org/2839023003/diff/1/android_webview/native/aw_contents.cc File android_webview/native/aw_contents.cc (right): https://codereview.chromium.org/2839023003/diff/1/android_webview/native/aw_contents.cc#newcode292 android_webview/native/aw_contents.cc:292: void AwContents::InitAutofillIfNecessary(bool enabled) { In ...
3 years, 7 months ago (2017-04-28 01:46:40 UTC) #5
Roger McFarlane (Chromium)
https://codereview.chromium.org/2839023003/diff/1/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/1/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode18 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:18: * AutofillProvider handles one autofill session at time, each ...
3 years, 7 months ago (2017-04-28 20:28:27 UTC) #6
michaelbai
https://codereview.chromium.org/2839023003/diff/1/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/1/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode18 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:18: * AutofillProvider handles one autofill session at time, each ...
3 years, 7 months ago (2017-04-28 20:52:01 UTC) #7
michaelbai
PTAL https://codereview.chromium.org/2839023003/diff/1/android_webview/java/src/org/chromium/android_webview/AwSettings.java File android_webview/java/src/org/chromium/android_webview/AwSettings.java (right): https://codereview.chromium.org/2839023003/diff/1/android_webview/java/src/org/chromium/android_webview/AwSettings.java#newcode111 android_webview/java/src/org/chromium/android_webview/AwSettings.java:111: private boolean mAutoCompleteEnabled = true; On 2017/04/27 21:51:44, ...
3 years, 7 months ago (2017-05-03 04:43:59 UTC) #8
michaelbai
PTAL, Here is summary of patch 2 and 3's changes, hopefully could help for the ...
3 years, 7 months ago (2017-05-04 19:47:27 UTC) #9
Roger McFarlane (Chromium)
This looks OK to me. Adding sebsg@ for a second set of Autofill eyes. https://codereview.chromium.org/2839023003/diff/40001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java ...
3 years, 7 months ago (2017-05-05 21:19:43 UTC) #10
Roger McFarlane (Chromium)
3 years, 7 months ago (2017-05-05 21:20:02 UTC) #12
sebsg
Interesting! some comments: https://codereview.chromium.org/2839023003/diff/40001/components/autofill/content/browser/autofill_provider_android.h File components/autofill/content/browser/autofill_provider_android.h (right): https://codereview.chromium.org/2839023003/diff/40001/components/autofill/content/browser/autofill_provider_android.h#newcode5 components/autofill/content/browser/autofill_provider_android.h:5: #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_PROVIDER_ANDROID_H_ Could you please move ...
3 years, 7 months ago (2017-05-08 15:38:17 UTC) #13
michaelbai
PTAL https://codereview.chromium.org/2839023003/diff/40001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/40001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode37 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:37: * form by provided values. On 2017/05/05 21:19:43, ...
3 years, 7 months ago (2017-05-09 00:27:04 UTC) #14
michaelbai
Roger, sebsg@ would you like review this again?
3 years, 7 months ago (2017-05-09 23:54:35 UTC) #15
Roger McFarlane (Chromium)
AFAICT, the diffs from the previous CL are just: - moving some files under android/ ...
3 years, 7 months ago (2017-05-10 02:31:54 UTC) #16
michaelbai
Yes, all diffs are for addressing the comments from sebsg@ and you
3 years, 7 months ago (2017-05-10 02:37:10 UTC) #17
Roger McFarlane (Chromium)
LGTM Please wait for sebsg@ to concur (or not).
3 years, 7 months ago (2017-05-10 03:10:35 UTC) #18
sebsg
Thanks for moving the files, and yeah sure, let's make it cleaner in a future ...
3 years, 7 months ago (2017-05-10 14:33:26 UTC) #19
sgurun-gerrit only
thanks for the hard work. https://codereview.chromium.org/2839023003/diff/60001/android_webview/java/src/org/chromium/android_webview/AwContents.java File android_webview/java/src/org/chromium/android_webview/AwContents.java (right): https://codereview.chromium.org/2839023003/diff/60001/android_webview/java/src/org/chromium/android_webview/AwContents.java#newcode2918 android_webview/java/src/org/chromium/android_webview/AwContents.java:2918: private AutofillProvider getAutofillProvider() { ...
3 years, 7 months ago (2017-05-11 00:13:29 UTC) #20
michaelbai
PTAL https://codereview.chromium.org/2839023003/diff/60001/android_webview/java/src/org/chromium/android_webview/AwContents.java File android_webview/java/src/org/chromium/android_webview/AwContents.java (right): https://codereview.chromium.org/2839023003/diff/60001/android_webview/java/src/org/chromium/android_webview/AwContents.java#newcode2918 android_webview/java/src/org/chromium/android_webview/AwContents.java:2918: private AutofillProvider getAutofillProvider() { On 2017/05/11 00:13:29, sgurun ...
3 years, 7 months ago (2017-05-12 00:37:23 UTC) #21
sgurun-gerrit only
https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode64 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:64: protected abstract void startAutofillSession(Object webContents, sorry, I missed this ...
3 years, 7 months ago (2017-05-12 22:47:37 UTC) #22
sgurun-gerrit only
https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode64 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:64: protected abstract void startAutofillSession(Object webContents, On 2017/05/12 22:47:37, sgurun ...
3 years, 7 months ago (2017-05-12 22:49:41 UTC) #23
michaelbai
PTAL https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java File components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java (right): https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java#newcode64 components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java:64: protected abstract void startAutofillSession(Object webContents, On 2017/05/12 22:49:41, ...
3 years, 7 months ago (2017-05-12 23:51:18 UTC) #24
sgurun-gerrit only
On 2017/05/12 23:51:18, michaelbai wrote: > PTAL > > https://codereview.chromium.org/2839023003/diff/80001/components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java > File > components/autofill/android/java/src/org/chromium/components/autofill/AutofillProvider.java > ...
3 years, 7 months ago (2017-05-12 23:59:27 UTC) #25
sgurun-gerrit only
On 2017/05/12 23:59:27, sgurun wrote: > On 2017/05/12 23:51:18, michaelbai wrote: > > PTAL > ...
3 years, 7 months ago (2017-05-15 19:51:53 UTC) #26
Mathieu
On 2017/05/15 19:51:53, sgurun wrote: > On 2017/05/12 23:59:27, sgurun wrote: > > On 2017/05/12 ...
3 years, 7 months ago (2017-05-15 19:56:34 UTC) #27
Mathieu
On 2017/05/15 19:56:34, Mathieu wrote: > On 2017/05/15 19:51:53, sgurun wrote: > > On 2017/05/12 ...
3 years, 7 months ago (2017-05-15 19:57:24 UTC) #28
sgurun-gerrit only
On 2017/05/15 19:57:24, Mathieu wrote: > On 2017/05/15 19:56:34, Mathieu wrote: > > On 2017/05/15 ...
3 years, 7 months ago (2017-05-15 20:29:25 UTC) #29
michaelbai
avi@ could you help review the dep change of components/autofill/android/DEPS
3 years, 7 months ago (2017-05-16 00:13:01 UTC) #31
Avi (use Gerrit)
On 2017/05/16 00:13:01, michaelbai wrote: > avi@ could you help review the dep change of ...
3 years, 7 months ago (2017-05-16 15:17:59 UTC) #36
sebsg
If you don't need to merge, could you do the refactoring in this CL?
3 years, 7 months ago (2017-05-16 16:58:57 UTC) #37
Roger McFarlane (Chromium)
If this is no longer targeted to be merged into M59, then the rush factor ...
3 years, 7 months ago (2017-05-16 17:13:24 UTC) #38
michaelbai
On 2017/05/16 17:13:24, Roger McFarlane (Chromium) wrote: > If this is no longer targeted to ...
3 years, 7 months ago (2017-05-16 18:47:42 UTC) #39
michaelbai
Roger & sebsg@ PTAL This patch refactoring the AutofillManager, the main changes are - added ...
3 years, 7 months ago (2017-05-19 03:28:23 UTC) #40
michaelbai
ping, Roger & sebsg@ could you help to review this patch again.
3 years, 7 months ago (2017-05-23 01:44:22 UTC) #45
Roger McFarlane (Chromium)
https://codereview.chromium.org/2839023003/diff/140001/components/autofill/content/browser/content_autofill_driver.cc File components/autofill/content/browser/content_autofill_driver.cc (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/content/browser/content_autofill_driver.cc#newcode158 components/autofill/content/browser/content_autofill_driver.cc:158: if (autofill_manager_ && !autofill_manager_->IsShowingUnmaskPrompt()) maybe add IsShowingUnmaskPrompt as a, ...
3 years, 7 months ago (2017-05-24 04:18:22 UTC) #46
michaelbai
Thanks Roger for working late, before starting my next patch, I have some questions about ...
3 years, 7 months ago (2017-05-24 05:14:09 UTC) #47
sebsg
Thanks for the refactoring, some comments. https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.h File components/autofill/android/autofill_provider_android.h (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.h#newcode26 components/autofill/android/autofill_provider_android.h:26: // Override AutofillProvider ...
3 years, 7 months ago (2017-05-24 13:32:43 UTC) #48
michaelbai
sebsg@ thanks for the comments, I have different thought about ifdef, though I don't have ...
3 years, 7 months ago (2017-05-24 16:45:28 UTC) #49
Mathieu
Some comments, not done with the review, this is a big change! https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.cc File components/autofill/android/autofill_provider_android.cc ...
3 years, 7 months ago (2017-05-24 18:02:02 UTC) #51
Roger McFarlane (Chromium)
https://codereview.chromium.org/2839023003/diff/140001/components/autofill/core/browser/autofill_handler.h File components/autofill/core/browser/autofill_handler.h (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/core/browser/autofill_handler.h#newcode27 components/autofill/core/browser/autofill_handler.h:27: class AutofillHandler { On 2017/05/24 05:14:09, michaelbai wrote: > ...
3 years, 7 months ago (2017-05-24 20:03:31 UTC) #52
michaelbai
https://codereview.chromium.org/2839023003/diff/140001/components/autofill/core/browser/autofill_handler.h File components/autofill/core/browser/autofill_handler.h (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/core/browser/autofill_handler.h#newcode27 components/autofill/core/browser/autofill_handler.h:27: class AutofillHandler { On 2017/05/24 20:03:30, Roger McFarlane (Chromium) ...
3 years, 7 months ago (2017-05-24 20:43:24 UTC) #53
michaelbai
https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.cc File components/autofill/android/autofill_provider_android.cc (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.cc#newcode58 components/autofill/android/autofill_provider_android.cc:58: DCHECK_CURRENTLY_ON(BrowserThread::UI); On 2017/05/24 18:02:01, Mathieu wrote: > From their ...
3 years, 7 months ago (2017-05-24 20:57:54 UTC) #54
Mathieu
https://codereview.chromium.org/2839023003/diff/140001/android_webview/browser/aw_contents.cc File android_webview/browser/aw_contents.cc (right): https://codereview.chromium.org/2839023003/diff/140001/android_webview/browser/aw_contents.cc#newcode314 android_webview/browser/aw_contents.cc:314: // Just return, if the app neither runs on ...
3 years, 7 months ago (2017-05-25 18:18:37 UTC) #55
sebsg
https://codereview.chromium.org/2839023003/diff/140001/components/autofill/content/browser/content_autofill_driver_factory.h File components/autofill/content/browser/content_autofill_driver_factory.h (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/content/browser/content_autofill_driver_factory.h#newcode78 components/autofill/content/browser/content_autofill_driver_factory.h:78: AutofillProvider* provider_; On 2017/05/24 16:45:28, michaelbai wrote: > On ...
3 years, 7 months ago (2017-05-25 20:57:36 UTC) #56
michaelbai
Thanks for review, I were a busy bug cop, just got time to work on ...
3 years, 7 months ago (2017-05-26 23:12:08 UTC) #57
sebsg
Small question, thanks! https://codereview.chromium.org/2839023003/diff/160001/components/autofill/core/browser/autofill_provider.h File components/autofill/core/browser/autofill_provider.h (right): https://codereview.chromium.org/2839023003/diff/160001/components/autofill/core/browser/autofill_provider.h#newcode19 components/autofill/core/browser/autofill_provider.h:19: // This class is native peer ...
3 years, 6 months ago (2017-05-29 15:36:23 UTC) #62
michaelbai
https://codereview.chromium.org/2839023003/diff/160001/components/autofill/core/browser/autofill_provider.h File components/autofill/core/browser/autofill_provider.h (right): https://codereview.chromium.org/2839023003/diff/160001/components/autofill/core/browser/autofill_provider.h#newcode19 components/autofill/core/browser/autofill_provider.h:19: // This class is native peer of AutofillProvider, see ...
3 years, 6 months ago (2017-05-30 16:02:28 UTC) #63
michaelbai
Update the comment of AutofillProvider, PTAL
3 years, 6 months ago (2017-05-30 18:46:46 UTC) #64
michaelbai
Ping
3 years, 6 months ago (2017-05-31 15:25:45 UTC) #67
Roger McFarlane (Chromium)
A few nits and a couple of longer term details to flesh out, but this ...
3 years, 6 months ago (2017-05-31 18:33:24 UTC) #70
michaelbai
Thanks Roger, sebsg@ & mathieu PTAL https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.h File components/autofill/android/autofill_provider_android.h (right): https://codereview.chromium.org/2839023003/diff/140001/components/autofill/android/autofill_provider_android.h#newcode20 components/autofill/android/autofill_provider_android.h:20: class AutofillProviderAndroid : ...
3 years, 6 months ago (2017-05-31 21:05:55 UTC) #71
sebsg
LGTM too
3 years, 6 months ago (2017-05-31 21:07:48 UTC) #72
michaelbai
Thanks sebsg@! mathp@ Would you like review the patch again? I want to get this ...
3 years, 6 months ago (2017-06-01 15:21:32 UTC) #73
Mathieu
lgtm
3 years, 6 months ago (2017-06-01 16:13:02 UTC) #74
michaelbai
Thanks all for your time to review this.
3 years, 6 months ago (2017-06-01 18:01:47 UTC) #75
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/2839023003/220001
3 years, 6 months ago (2017-06-01 18:02:34 UTC) #78
commit-bot: I haz the power
3 years, 6 months ago (2017-06-01 19:37:12 UTC) #81
Message was sent while issue was closed.
Committed patchset #12 (id:220001) as
https://chromium.googlesource.com/chromium/src/+/927a09ab04f76ed68c8a19409923...

Powered by Google App Engine
This is Rietveld 408576698