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

Issue 12094069: [autofill] Hook the sign-in button up to required actions. (Closed)

Created:
7 years, 10 months ago by Dan Beam
Modified:
7 years, 10 months ago
Reviewers:
Ilya Sherman, sky
CC:
chromium-reviews, Raman Kakilate, tfarina, benquan, dhollowa+watch_chromium.org, ahutter, dbeam+watch-autofill_chromium.org, Dane Wallinga, dyu1, Albert Bodenhamer, estade+watch_chromium.org, Ilya Sherman
Visibility:
Public.

Description

[autofill] Hook the sign-in button up to required actions. - Actually use the info we're getting from wallet to tell whether a user needs to authenticate further (in this case only in a non-passive way). - Add a DialogSignedInState to autofill_dialog_types.h. - Add a DialogSignedInState SignedInState() to AutofillDialogController interface and implements AutofillDialogControllerImpl. - Adds a UpdateAccountChooser() to AutofillDialogView and implements in AutofillDialogViews. - Use SignedInState() from AutofillDialogViews. BUG=157270, 163508, 171528 R=isherman@chromium.org,sky@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=180083

Patch Set 1 #

Patch Set 2 : +snark #

Total comments: 14

Patch Set 3 : isherman@ review #

Total comments: 8

Patch Set 4 : isherman@ review #

Patch Set 5 : git co master -p -- autofill_dialog_controller.h #

Patch Set 6 : views cleanup #

Patch Set 7 : bored #

Total comments: 2

Patch Set 8 : isherman@ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+68 lines, -36 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller.h View 1 2 3 4 5 6 7 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller_impl.h View 1 2 3 4 5 6 7 3 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc View 1 2 3 4 5 6 7 5 chunks +34 lines, -32 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_types.h View 1 2 3 1 chunk +7 lines, -0 lines 0 comments Download
M chrome/browser/ui/autofill/autofill_dialog_view.h View 1 2 3 4 5 6 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/autofill/autofill_dialog_views.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/ui/views/autofill/autofill_dialog_views.cc View 1 2 3 4 5 6 7 2 chunks +10 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
Dan Beam
7 years, 10 months ago (2013-01-31 02:12:37 UTC) #1
Ilya Sherman
https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode103 chrome/browser/ui/autofill/autofill_dialog_controller.h:103: virtual std::vector<wallet::RequiredAction> RequiredActions() const = 0; nit: Shouldn't this ...
7 years, 10 months ago (2013-01-31 02:33:07 UTC) #2
Dan Beam
https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode103 chrome/browser/ui/autofill/autofill_dialog_controller.h:103: virtual std::vector<wallet::RequiredAction> RequiredActions() const = 0; On 2013/01/31 02:33:07, ...
7 years, 10 months ago (2013-01-31 02:48:51 UTC) #3
Ilya Sherman
LGTM with da nitz: https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode106 chrome/browser/ui/autofill/autofill_dialog_controller.h:106: virtual DialogNotification CurrentNotification() const = ...
7 years, 10 months ago (2013-01-31 04:35:44 UTC) #4
sky
LGTM
7 years, 10 months ago (2013-01-31 16:49:53 UTC) #5
Dan Beam
isherman@: ptaql (q = quick) https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3001/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode106 chrome/browser/ui/autofill/autofill_dialog_controller.h:106: virtual DialogNotification CurrentNotification() const ...
7 years, 10 months ago (2013-01-31 21:04:26 UTC) #6
Ilya Sherman
SLGTM (s=still) https://chromiumcodereview.appspot.com/12094069/diff/3016/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3016/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode54 chrome/browser/ui/autofill/autofill_dialog_controller.h:54: virtual DialogSignedInState SignedIn() const = 0; nit: ...
7 years, 10 months ago (2013-01-31 23:46:41 UTC) #7
tfarina
On Thu, Jan 31, 2013 at 9:46 PM, <isherman@chromium.org> wrote: > SLGTM (s=still) > > ...
7 years, 10 months ago (2013-01-31 23:47:38 UTC) #8
Dan Beam
On 2013/01/31 23:47:38, tfarina wrote: > On Thu, Jan 31, 2013 at 9:46 PM, <mailto:isherman@chromium.org> ...
7 years, 10 months ago (2013-01-31 23:54:49 UTC) #9
Dan Beam
https://chromiumcodereview.appspot.com/12094069/diff/3016/chrome/browser/ui/autofill/autofill_dialog_controller.h File chrome/browser/ui/autofill/autofill_dialog_controller.h (right): https://chromiumcodereview.appspot.com/12094069/diff/3016/chrome/browser/ui/autofill/autofill_dialog_controller.h#newcode54 chrome/browser/ui/autofill/autofill_dialog_controller.h:54: virtual DialogSignedInState SignedIn() const = 0; On 2013/01/31 23:46:41, ...
7 years, 10 months ago (2013-02-01 00:30:39 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dbeam@chromium.org/12094069/14001
7 years, 10 months ago (2013-02-01 00:49:21 UTC) #11
commit-bot: I haz the power
7 years, 10 months ago (2013-02-01 05:24:38 UTC) #12
Message was sent while issue was closed.
Change committed as 180083

Powered by Google App Engine
This is Rietveld 408576698