summaryrefslogtreecommitdiff
path: root/chrome/browser/sync/supervised_user_signin_manager_wrapper.h
blob: afe8a132cf7591bebc9cac3567744cc10c7f7d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_
#define CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_

#include <string>

#include "base/basictypes.h"

class Profile;
class SigninManagerBase;

// Some chrome cloud services support supervised users as well as normally
// authenticated users that sign in through SigninManager.  To facilitate
// getting the "effective" username and account identifiers, services can
// use this class to wrap the SigninManager and return supervised user account
// information when appropriate.
class SupervisedUserSigninManagerWrapper {
 public:
  SupervisedUserSigninManagerWrapper(Profile* profile,
                                     SigninManagerBase* original);
  virtual ~SupervisedUserSigninManagerWrapper();

  virtual std::string GetEffectiveUsername() const;
  virtual std::string GetAccountIdToUse() const;

  virtual std::string GetSyncScopeToUse() const;

  SigninManagerBase* GetOriginal();

 private:
  Profile* profile_;
  SigninManagerBase* original_;
  DISALLOW_COPY_AND_ASSIGN(SupervisedUserSigninManagerWrapper);
};

#endif  // CHROME_BROWSER_SYNC_SUPERVISED_USER_SIGNIN_MANAGER_WRAPPER_H_