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

Issue 399573002: [Password Generation] Trigger confirmation bubble when a password is saved (Closed)

Created:
6 years, 5 months ago by Garrett Casto
Modified:
6 years, 5 months ago
Reviewers:
Mike West, Ilya Sherman
CC:
chromium-reviews, tfarina, gcasto+watchlist_chromium.org, asvitkine+watch_chromium.org, mkwst+watchlist_chromium.org
Project:
chromium
Visibility:
Public.

Description

[Password Generation] Trigger confirmation bubble when a password is saved BUG=318977 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284169

Patch Set 1 #

Patch Set 2 : #

Total comments: 14

Patch Set 3 : Comments #

Total comments: 13

Patch Set 4 : More comments #

Patch Set 5 : Compilation #

Patch Set 6 : Win #

Patch Set 7 : Win Again #

Unified diffs Side-by-side diffs Delta from patch set Stats (+470 lines, -126 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/password_manager/chrome_password_manager_client.h View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M chrome/browser/password_manager/chrome_password_manager_client.cc View 1 2 1 chunk +13 lines, -3 lines 0 comments Download
M chrome/browser/password_manager/save_password_infobar_delegate.h View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M chrome/browser/password_manager/save_password_infobar_delegate.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_bubble_model.h View 1 2 4 chunks +18 lines, -2 lines 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_bubble_model.cc View 1 2 3 7 chunks +69 lines, -23 lines 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_bubble_model_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_ui_controller.h View 1 2 3 4 chunks +17 lines, -7 lines 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_ui_controller.cc View 1 2 3 4 5 chunks +45 lines, -14 lines 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc View 1 2 7 chunks +41 lines, -22 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h View 1 2 2 chunks +24 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_bubble_view.cc View 1 2 7 chunks +73 lines, -3 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_bubble_view_browsertest.cc View 1 2 3 4 chunks +31 lines, -9 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_icon_view.cc View 1 2 1 chunk +4 lines, -6 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_view_test.h View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/passwords/manage_passwords_view_test.cc View 1 2 1 chunk +15 lines, -1 line 0 comments Download
M components/autofill/core/common/password_form.h View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M components/password_manager/core/browser/password_form_manager_unittest.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M components/password_manager/core/browser/password_generation_manager_unittest.cc View 1 2 1 chunk +0 lines, -2 lines 0 comments Download
M components/password_manager/core/browser/password_manager.cc View 1 2 1 chunk +7 lines, -2 lines 0 comments Download
M components/password_manager/core/browser/password_manager_client.h View 1 2 1 chunk +7 lines, -1 line 0 comments Download
M components/password_manager/core/browser/password_manager_metrics_util.h View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M components/password_manager/core/browser/password_manager_unittest.cc View 1 2 12 chunks +30 lines, -15 lines 0 comments Download
M components/password_manager/core/browser/stub_password_manager_client.h View 1 2 6 1 chunk +4 lines, -2 lines 0 comments Download
M components/password_manager/core/browser/stub_password_manager_client.cc View 1 2 3 4 5 6 2 chunks +6 lines, -1 line 0 comments Download
M components/password_manager/core/common/password_manager_ui.h View 1 2 2 chunks +12 lines, -0 lines 0 comments Download
M components/password_manager/core/common/password_manager_ui.cc View 1 2 2 chunks +21 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 2 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 20 (0 generated)
Garrett Casto
https://codereview.chromium.org/399573002/diff/20001/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc File chrome/browser/ui/passwords/manage_passwords_ui_controller.cc (left): https://codereview.chromium.org/399573002/diff/20001/chrome/browser/ui/passwords/manage_passwords_ui_controller.cc#oldcode213 chrome/browser/ui/passwords/manage_passwords_ui_controller.cc:213: icon->SetState(password_manager::ui::PENDING_PASSWORD_STATE); This code make it seems like the views ...
6 years, 5 months ago (2014-07-16 06:29:01 UTC) #1
Mike West
Did UI approve this? It seems a bit odd to reuse the manage passwords bubble; ...
6 years, 5 months ago (2014-07-16 07:55:03 UTC) #2
Garrett Casto
Per the question about mocks, turns out I'm a bit of an idiot. You can ...
6 years, 5 months ago (2014-07-17 06:42:46 UTC) #3
Mike West
LGTM if you can make the bots happy. Thanks for taking another pass. (Next time, ...
6 years, 5 months ago (2014-07-17 13:43:18 UTC) #4
Garrett Casto
https://codereview.chromium.org/399573002/diff/40001/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc File chrome/browser/ui/passwords/manage_passwords_bubble_model.cc (right): https://codereview.chromium.org/399573002/diff/40001/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc#newcode58 chrome/browser/ui/passwords/manage_passwords_bubble_model.cc:58: save_confirmation_text_ = JoinString(pieces, base::string16()); On 2014/07/17 13:43:17, Mike West ...
6 years, 5 months ago (2014-07-17 20:54:55 UTC) #5
Garrett Casto
+Ilya for histograms stuff.
6 years, 5 months ago (2014-07-17 20:55:22 UTC) #6
Ilya Sherman
histograms.xml LGTM
6 years, 5 months ago (2014-07-17 21:32:18 UTC) #7
Garrett Casto
The CQ bit was checked by gcasto@chromium.org
6 years, 5 months ago (2014-07-17 23:07:04 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gcasto@chromium.org/399573002/80001
6 years, 5 months ago (2014-07-17 23:10:10 UTC) #9
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win8_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-07-18 04:14:11 UTC) #10
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-18 04:24:06 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: win8_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win8_chromium_rel/builds/4416) win_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_rel/builds/40388)
6 years, 5 months ago (2014-07-18 04:24:07 UTC) #12
Garrett Casto
The CQ bit was checked by gcasto@chromium.org
6 years, 5 months ago (2014-07-18 05:20:59 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gcasto@chromium.org/399573002/100001
6 years, 5 months ago (2014-07-18 05:21:33 UTC) #14
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win8_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-07-18 08:11:16 UTC) #15
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-18 08:16:56 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: win8_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win8_chromium_rel/builds/4454)
6 years, 5 months ago (2014-07-18 08:16:58 UTC) #17
Garrett Casto
The CQ bit was checked by gcasto@chromium.org
6 years, 5 months ago (2014-07-18 16:36:01 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gcasto@chromium.org/399573002/120001
6 years, 5 months ago (2014-07-18 16:36:43 UTC) #19
commit-bot: I haz the power
6 years, 5 months ago (2014-07-18 18:48:48 UTC) #20
Message was sent while issue was closed.
Change committed as 284169

Powered by Google App Engine
This is Rietveld 408576698