| 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/login/users/wallpaper/wallpaper_manager.h" | 9 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" |
| 10 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 10 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 return result; | 182 return result; |
| 183 } | 183 } |
| 184 | 184 |
| 185 UserFlow* FakeChromeUserManager::GetDefaultUserFlow() const { | 185 UserFlow* FakeChromeUserManager::GetDefaultUserFlow() const { |
| 186 if (!default_flow_.get()) | 186 if (!default_flow_.get()) |
| 187 default_flow_.reset(new DefaultUserFlow()); | 187 default_flow_.reset(new DefaultUserFlow()); |
| 188 return default_flow_.get(); | 188 return default_flow_.get(); |
| 189 } | 189 } |
| 190 | 190 |
| 191 bool FakeChromeUserManager::FindKnownUserPrefs( | |
| 192 const AccountId& account_id, | |
| 193 const base::DictionaryValue** out_value) { | |
| 194 return false; | |
| 195 } | |
| 196 | |
| 197 void FakeChromeUserManager::UpdateKnownUserPrefs( | |
| 198 const AccountId& account_id, | |
| 199 const base::DictionaryValue& values, | |
| 200 bool clear) {} | |
| 201 | |
| 202 } // namespace chromeos | 191 } // namespace chromeos |
| OLD | NEW |