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

Side by Side Diff: chrome/browser/chromeos/login/users/fake_chrome_user_manager.cc

Issue 1534173003: ChromeOS user_manager: move all KnownUser code to separate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/FindUsingSAML/IsUsingSAML/ Created 5 years 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/users/fake_chrome_user_manager.h ('k') | chrome/browser/chromeos/preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698