summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_main.cc
diff options
context:
space:
mode:
authornkostylev@chromium.org <nkostylev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-13 18:01:06 +0000
committernkostylev@chromium.org <nkostylev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-13 18:01:06 +0000
commitd4aaa95e6481e57663544b63109f73906c0e7d61 (patch)
tree5db47d0b96c2c7fc3786e4ce73ee3fc5f7ce2343 /chrome/browser/browser_main.cc
parent44392c6cce164e4b54df6a17fdf41a08ab55b7f1 (diff)
downloadchromium_src-d4aaa95e6481e57663544b63109f73906c0e7d61.zip
chromium_src-d4aaa95e6481e57663544b63109f73906c0e7d61.tar.gz
chromium_src-d4aaa95e6481e57663544b63109f73906c0e7d61.tar.bz2
[cros] Fetch cookies after online authentication is successful.
BUG=chromium-os:9814 TEST=Manual. Checked that web properties load w/o auth request for new user/existing user/existing with cookies cleared/existing with changed password. Review URL: http://codereview.chromium.org/5641001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69016 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r--chrome/browser/browser_main.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index d5b6d7f..23d7ad6 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -932,7 +932,10 @@ class StubLogin : public chromeos::LoginStatusConsumer {
const std::string& password,
const GaiaAuthConsumer::ClientLoginResult& credentials,
bool pending_requests) {
- chromeos::LoginUtils::Get()->CompleteLogin(username, password, credentials);
+ chromeos::LoginUtils::Get()->CompleteLogin(username,
+ password,
+ credentials,
+ pending_requests);
delete this;
}