| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/users/fake_chrome_user_manager.h" | 5 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" | 7 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" |
| 8 #include "chrome/browser/chromeos/login/users/fake_supervised_user_manager.h" | 8 #include "chrome/browser/chromeos/login/users/fake_supervised_user_manager.h" |
| 9 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 9 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| 10 #include "chrome/browser/chromeos/settings/cros_settings.h" | 10 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 return result; | 167 return result; |
| 168 } | 168 } |
| 169 | 169 |
| 170 UserFlow* FakeChromeUserManager::GetDefaultUserFlow() const { | 170 UserFlow* FakeChromeUserManager::GetDefaultUserFlow() const { |
| 171 if (!default_flow_.get()) | 171 if (!default_flow_.get()) |
| 172 default_flow_.reset(new DefaultUserFlow()); | 172 default_flow_.reset(new DefaultUserFlow()); |
| 173 return default_flow_.get(); | 173 return default_flow_.get(); |
| 174 } | 174 } |
| 175 | 175 |
| 176 bool FakeChromeUserManager::FindKnownUserPrefs( |
| 177 const user_manager::UserID& user_id, |
| 178 const base::DictionaryValue** out_value) { |
| 179 return false; |
| 180 } |
| 181 |
| 182 void FakeChromeUserManager::UpdateKnownUserPrefs( |
| 183 const user_manager::UserID& user_id, |
| 184 const base::DictionaryValue& values, |
| 185 bool clear) { |
| 186 } |
| 187 |
| 176 } // namespace chromeos | 188 } // namespace chromeos |
| OLD | NEW |