| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/profiles/profile_helper.h" | 5 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
| 9 #include "chrome/browser/browsing_data/browsing_data_helper.h" | 9 #include "chrome/browser/browsing_data/browsing_data_helper.h" |
| 10 #include "chrome/browser/chromeos/cros/cros_library.h" | 10 #include "chrome/browser/chromeos/cros/cros_library.h" |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 //////////////////////////////////////////////////////////////////////////////// | 138 //////////////////////////////////////////////////////////////////////////////// |
| 139 // ProfileHelper, UserManager::UserSessionStateObserver implementation: | 139 // ProfileHelper, UserManager::UserSessionStateObserver implementation: |
| 140 | 140 |
| 141 void ProfileHelper::ActiveUserHashChanged(const std::string& hash) { | 141 void ProfileHelper::ActiveUserHashChanged(const std::string& hash) { |
| 142 active_user_id_hash_ = hash; | 142 active_user_id_hash_ = hash; |
| 143 base::FilePath profile_path = GetProfilePathByUserIdHash(hash); | 143 base::FilePath profile_path = GetProfilePathByUserIdHash(hash); |
| 144 LOG(INFO) << "Switching to profile path: " << profile_path.value(); | 144 LOG(INFO) << "Switching to profile path: " << profile_path.value(); |
| 145 } | 145 } |
| 146 | 146 |
| 147 void ProfileHelper::PendingUserSessionsRestoreFinished() { |
| 148 } |
| 149 |
| 147 } // namespace chromeos | 150 } // namespace chromeos |
| OLD | NEW |