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

Issue 614973002: Extract LoginPerformer to chromeos/auth (Closed)

Created:
6 years, 2 months ago by Denis Kuznetsov (DE-MUC)
Modified:
6 years, 2 months ago
Reviewers:
Nikita (slow)
CC:
chromium-reviews, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, oshima+watch_chromium.org, nkostylev+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Extract LoginPerformer to chromeos/auth BUG=387613 R=nkostylev@chromium.org Committed: https://crrev.com/2ec6339f32455ab40a9ada24ee8a38e396dca9fb Cr-Commit-Position: refs/heads/master@{#300489}

Patch Set 1 #

Patch Set 2 : Merge with ToT #

Patch Set 3 : Fix endless recursion #

Patch Set 4 : Merge #

Patch Set 5 : Merge #

Total comments: 21

Patch Set 6 : Address comments, fix issue in RunTrustedCheck #

Patch Set 7 : Yet another merge #

Total comments: 8

Patch Set 8 : Fix nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+521 lines, -797 lines) Patch
M chrome/browser/chromeos/app_mode/kiosk_profile_loader.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/app_mode/kiosk_profile_loader.cc View 2 chunks +2 lines, -1 line 0 comments Download
A chrome/browser/chromeos/login/auth/chrome_login_performer.h View 1 2 3 4 5 1 chunk +78 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/login/auth/chrome_login_performer.cc View 1 2 3 4 5 6 7 1 chunk +171 lines, -0 lines 0 comments Download
D chrome/browser/chromeos/login/auth/login_performer.h View 1 2 3 4 1 chunk +0 lines, -168 lines 0 comments Download
D chrome/browser/chromeos/login/auth/login_performer.cc View 1 2 3 4 5 1 chunk +0 lines, -372 lines 0 comments Download
M chrome/browser/chromeos/login/existing_user_controller.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/login/existing_user_controller.cc View 1 2 3 4 5 5 chunks +5 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/login/lock/screen_locker.cc View 1 2 3 4 5 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/chromeos/login/screens/error_screen.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/login/screens/error_screen.cc View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/chromeos/login/session/user_session_manager.cc View 1 2 3 4 5 6 7 3 chunks +8 lines, -7 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M chromeos/chromeos.gyp View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M chromeos/login/auth/authenticator.h View 1 2 3 4 5 6 7 4 chunks +10 lines, -6 lines 0 comments Download
M chromeos/login/auth/authenticator.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M chromeos/login/auth/cryptohome_authenticator.h View 1 2 3 4 5 3 chunks +7 lines, -4 lines 0 comments Download
M chromeos/login/auth/cryptohome_authenticator.cc View 1 2 3 4 5 2 chunks +4 lines, -4 lines 0 comments Download
A + chromeos/login/auth/login_performer.h View 1 2 3 4 5 6 7 8 chunks +94 lines, -30 lines 0 comments Download
A + chromeos/login/auth/login_performer.cc View 1 2 3 4 5 8 chunks +125 lines, -188 lines 0 comments Download
M chromeos/login/auth/mock_authenticator.h View 1 2 3 4 5 2 chunks +5 lines, -3 lines 0 comments Download
M chromeos/login/auth/mock_authenticator.cc View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 11 (1 generated)
Nikita (slow)
I suggest experimenting with git cl upload --similarity=xx parameter. Decrease xx value (default 50) so ...
6 years, 2 months ago (2014-10-02 12:38:43 UTC) #1
Nikita (slow)
https://codereview.chromium.org/614973002/diff/80001/chromeos/login/auth/login_performer.cc File chromeos/login/auth/login_performer.cc (right): https://codereview.chromium.org/614973002/diff/80001/chromeos/login/auth/login_performer.cc#newcode143 chromeos/login/auth/login_performer.cc:143: return; nit: Add {} https://codereview.chromium.org/614973002/diff/80001/chromeos/login/auth/login_performer.cc#newcode179 chromeos/login/auth/login_performer.cc:179: return; nit: Add ...
6 years, 2 months ago (2014-10-06 14:55:33 UTC) #2
Nikita (slow)
https://codereview.chromium.org/614973002/diff/80001/chromeos/login/auth/login_performer.h File chromeos/login/auth/login_performer.h (right): https://codereview.chromium.org/614973002/diff/80001/chromeos/login/auth/login_performer.h#newcode124 chromeos/login/auth/login_performer.h:124: virtual void OnChecked(const std::string& username, bool success) OVERRIDE; nit: ...
6 years, 2 months ago (2014-10-06 15:02:31 UTC) #3
Nikita (slow)
https://codereview.chromium.org/614973002/diff/80001/chrome/browser/chromeos/login/auth/chrome_login_performer.cc File chrome/browser/chromeos/login/auth/chrome_login_performer.cc (right): https://codereview.chromium.org/614973002/diff/80001/chrome/browser/chromeos/login/auth/chrome_login_performer.cc#newcode54 chrome/browser/chromeos/login/auth/chrome_login_performer.cc:54: callback.Run(); Please place last two lines of this method ...
6 years, 2 months ago (2014-10-06 15:12:35 UTC) #4
Denis Kuznetsov (DE-MUC)
addressed all comments, ptal.
6 years, 2 months ago (2014-10-17 19:46:57 UTC) #5
Nikita (slow)
lgtm https://codereview.chromium.org/614973002/diff/120001/chrome/browser/chromeos/login/auth/chrome_login_performer.cc File chrome/browser/chromeos/login/auth/chrome_login_performer.cc (right): https://codereview.chromium.org/614973002/diff/120001/chrome/browser/chromeos/login/auth/chrome_login_performer.cc#newcode54 chrome/browser/chromeos/login/auth/chrome_login_performer.cc:54: // CrosSettingsProvider::TRUSTED nit: add DCHECK instead // just ...
6 years, 2 months ago (2014-10-20 12:30:28 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/614973002/140001
6 years, 2 months ago (2014-10-21 14:03:33 UTC) #8
commit-bot: I haz the power
Committed patchset #8 (id:140001)
6 years, 2 months ago (2014-10-21 15:12:39 UTC) #9
commit-bot: I haz the power
Patchset 8 (id:??) landed as https://crrev.com/2ec6339f32455ab40a9ada24ee8a38e396dca9fb Cr-Commit-Position: refs/heads/master@{#300489}
6 years, 2 months ago (2014-10-21 15:13:22 UTC) #10
Nikita (slow)
6 years, 1 month ago (2014-10-25 19:12:14 UTC) #11
Message was sent while issue was closed.
A revert of this CL (patchset #8 id:140001) has been created in
https://codereview.chromium.org/681593003/ by nkostylev@chromium.org.

The reason for reverting is: Introduces new crashes: crbug.com/426522.

Powered by Google App Engine
This is Rietveld 408576698