| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/supervised/supervised_user_creation_cont
roller_new.h" | 5 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_cont
roller_new.h" |
| 6 | 6 |
| 7 #include "base/base64.h" | 7 #include "base/base64.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "base/sys_info.h" | 13 #include "base/sys_info.h" |
| 14 #include "base/task_runner_util.h" | 14 #include "base/task_runner_util.h" |
| 15 #include "base/threading/sequenced_worker_pool.h" | 15 #include "base/threading/sequenced_worker_pool.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "chrome/browser/chromeos/login/auth/mount_manager.h" | |
| 18 #include "chrome/browser/chromeos/login/supervised/supervised_user_authenticatio
n.h" | 17 #include "chrome/browser/chromeos/login/supervised/supervised_user_authenticatio
n.h" |
| 19 #include "chrome/browser/chromeos/login/supervised/supervised_user_constants.h" | 18 #include "chrome/browser/chromeos/login/supervised/supervised_user_constants.h" |
| 20 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h" | 19 #include "chrome/browser/chromeos/login/users/supervised_user_manager.h" |
| 21 #include "chrome/browser/chromeos/login/users/user_manager.h" | 20 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 21 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| 22 #include "chrome/browser/lifetime/application_lifetime.h" | 22 #include "chrome/browser/lifetime/application_lifetime.h" |
| 23 #include "chrome/browser/sync/profile_sync_service.h" | 23 #include "chrome/browser/sync/profile_sync_service.h" |
| 24 #include "chrome/browser/sync/profile_sync_service_factory.h" | 24 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 25 #include "chromeos/cryptohome/cryptohome_parameters.h" | 25 #include "chromeos/cryptohome/cryptohome_parameters.h" |
| 26 #include "chromeos/dbus/dbus_thread_manager.h" | 26 #include "chromeos/dbus/dbus_thread_manager.h" |
| 27 #include "chromeos/dbus/session_manager_client.h" | 27 #include "chromeos/dbus/session_manager_client.h" |
| 28 #include "chromeos/login/auth/key.h" | 28 #include "chromeos/login/auth/key.h" |
| 29 #include "chromeos/login/auth/user_context.h" | 29 #include "chromeos/login/auth/user_context.h" |
| 30 #include "components/user_manager/user.h" | 30 #include "components/user_manager/user.h" |
| 31 #include "content/public/browser/browser_thread.h" | 31 #include "content/public/browser/browser_thread.h" |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 stage_ = DASHBOARD_CREATED; | 335 stage_ = DASHBOARD_CREATED; |
| 336 | 336 |
| 337 if (error.state() == GoogleServiceAuthError::NONE) { | 337 if (error.state() == GoogleServiceAuthError::NONE) { |
| 338 creation_context_->token = token; | 338 creation_context_->token = token; |
| 339 | 339 |
| 340 PostTaskAndReplyWithResult( | 340 PostTaskAndReplyWithResult( |
| 341 content::BrowserThread::GetBlockingPool(), | 341 content::BrowserThread::GetBlockingPool(), |
| 342 FROM_HERE, | 342 FROM_HERE, |
| 343 base::Bind(&StoreSupervisedUserFiles, | 343 base::Bind(&StoreSupervisedUserFiles, |
| 344 creation_context_->token, | 344 creation_context_->token, |
| 345 MountManager::GetHomeDir(creation_context_->mount_hash)), | 345 ProfileHelper::GetProfilePathByUserIdHash( |
| 346 base::Bind(&SupervisedUserCreationControllerNew:: | 346 creation_context_->mount_hash)), |
| 347 OnSupervisedUserFilesStored, | 347 base::Bind( |
| 348 weak_factory_.GetWeakPtr())); | 348 &SupervisedUserCreationControllerNew::OnSupervisedUserFilesStored, |
| 349 weak_factory_.GetWeakPtr())); |
| 349 } else { | 350 } else { |
| 350 stage_ = STAGE_ERROR; | 351 stage_ = STAGE_ERROR; |
| 351 LOG(ERROR) << "Supervised user creation failed. Error code " | 352 LOG(ERROR) << "Supervised user creation failed. Error code " |
| 352 << error.state(); | 353 << error.state(); |
| 353 if (consumer_) | 354 if (consumer_) |
| 354 consumer_->OnCreationError(CLOUD_SERVER_ERROR); | 355 consumer_->OnCreationError(CLOUD_SERVER_ERROR); |
| 355 } | 356 } |
| 356 } | 357 } |
| 357 | 358 |
| 358 void SupervisedUserCreationControllerNew::OnSupervisedUserFilesStored( | 359 void SupervisedUserCreationControllerNew::OnSupervisedUserFilesStored( |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 creation_context_->registration_utility.reset(); | 400 creation_context_->registration_utility.reset(); |
| 400 chrome::AttemptUserExit(); | 401 chrome::AttemptUserExit(); |
| 401 } | 402 } |
| 402 | 403 |
| 403 std::string SupervisedUserCreationControllerNew::GetSupervisedUserId() { | 404 std::string SupervisedUserCreationControllerNew::GetSupervisedUserId() { |
| 404 DCHECK(creation_context_); | 405 DCHECK(creation_context_); |
| 405 return creation_context_->local_user_id; | 406 return creation_context_->local_user_id; |
| 406 } | 407 } |
| 407 | 408 |
| 408 } // namespace chromeos | 409 } // namespace chromeos |
| OLD | NEW |