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

Side by Side Diff: chrome/browser/chromeos/login/login_utils.cc

Issue 6266004: Fix chromeOs build after 71381. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/login_utils.h" 5 #include "chrome/browser/chromeos/login/login_utils.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 // For existing users there's usually a pending online auth request. 262 // For existing users there's usually a pending online auth request.
263 // Tokens will be fetched after it's is succeeded. 263 // Tokens will be fetched after it's is succeeded.
264 if (!pending_requests) { 264 if (!pending_requests) {
265 FetchTokens(profile, credentials); 265 FetchTokens(profile, credentials);
266 } 266 }
267 btl->AddLoginTimeMarker("TokensGotten", false); 267 btl->AddLoginTimeMarker("TokensGotten", false);
268 268
269 // Set the CrOS user by getting this constructor run with the 269 // Set the CrOS user by getting this constructor run with the
270 // user's email on first retrieval. 270 // user's email on first retrieval.
271 profile->GetProfileSyncService(username)->SetPassphrase(password, false); 271 profile->GetProfileSyncService(username)->SetPassphrase(password,
272 false,
273 true);
272 btl->AddLoginTimeMarker("SyncStarted", false); 274 btl->AddLoginTimeMarker("SyncStarted", false);
273 275
274 // Attempt to take ownership; this will fail if device is already owned. 276 // Attempt to take ownership; this will fail if device is already owned.
275 OwnershipService::GetSharedInstance()->StartTakeOwnershipAttempt( 277 OwnershipService::GetSharedInstance()->StartTakeOwnershipAttempt(
276 UserManager::Get()->logged_in_user().email()); 278 UserManager::Get()->logged_in_user().email());
277 // Own TPM device if, for any reason, it has not been done in EULA 279 // Own TPM device if, for any reason, it has not been done in EULA
278 // wizard screen. 280 // wizard screen.
279 if (CrosLibrary::Get()->EnsureLoaded()) { 281 if (CrosLibrary::Get()->EnsureLoaded()) {
280 CryptohomeLibrary* cryptohome = CrosLibrary::Get()->GetCryptohomeLibrary(); 282 CryptohomeLibrary* cryptohome = CrosLibrary::Get()->GetCryptohomeLibrary();
281 if (cryptohome->TpmIsEnabled() && !cryptohome->TpmIsBeingOwned()) { 283 if (cryptohome->TpmIsEnabled() && !cryptohome->TpmIsBeingOwned()) {
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 BrowserInit browser_init; 528 BrowserInit browser_init;
527 int return_code; 529 int return_code;
528 browser_init.LaunchBrowser(*CommandLine::ForCurrentProcess(), 530 browser_init.LaunchBrowser(*CommandLine::ForCurrentProcess(),
529 profile, 531 profile,
530 FilePath(), 532 FilePath(),
531 true, 533 true,
532 &return_code); 534 &return_code);
533 } 535 }
534 536
535 } // namespace chromeos 537 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698