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

Side by Side Diff: chrome/browser/chromeos/login/fake_supervised_user_manager.h

Issue 101283003: Add first implemenation for SU password sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/fake_supervised_user_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/chromeos/login/supervised_user_manager.h" 10 #include "chrome/browser/chromeos/login/supervised_user_manager.h"
(...skipping 20 matching lines...) Expand all
31 OVERRIDE; 31 OVERRIDE;
32 virtual std::string GetManagerUserId(const std::string& user_id) const 32 virtual std::string GetManagerUserId(const std::string& user_id) const
33 OVERRIDE; 33 OVERRIDE;
34 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const 34 virtual std::string GetManagerDisplayEmail(const std::string& user_id) const
35 OVERRIDE; 35 OVERRIDE;
36 virtual void StartCreationTransaction(const base::string16& display_name) 36 virtual void StartCreationTransaction(const base::string16& display_name)
37 OVERRIDE {} 37 OVERRIDE {}
38 virtual void SetCreationTransactionUserId(const std::string& user_id) 38 virtual void SetCreationTransactionUserId(const std::string& user_id)
39 OVERRIDE {} 39 OVERRIDE {}
40 virtual void CommitCreationTransaction() OVERRIDE {} 40 virtual void CommitCreationTransaction() OVERRIDE {}
41 virtual SupervisedUserAuthentication* GetAuthentication() OVERRIDE;
42 virtual void GetPasswordInformation(
43 const std::string& user_id,
44 base::DictionaryValue* result) OVERRIDE {}
45 virtual void SetPasswordInformation(
46 const std::string& user_id,
47 const base::DictionaryValue* password_info) OVERRIDE {}
41 48
42 private: 49 private:
43 DISALLOW_COPY_AND_ASSIGN(FakeSupervisedUserManager); 50 DISALLOW_COPY_AND_ASSIGN(FakeSupervisedUserManager);
44 }; 51 };
45 52
46 } // namespace chromeos 53 } // namespace chromeos
47 54
48 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_ 55 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_SUPERVISED_USER_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/fake_supervised_user_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698