Check USB device path access when prompting users to select a device.
[chromium-blink-merge.git] / chrome / browser / profiles / profile_info_interface.h
blob555f154aa47e3fe1615bdf0368f85c22cf491380
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_INFO_INTERFACE_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_INFO_INTERFACE_H_
8 #include "base/files/file_path.h"
9 #include "base/strings/string16.h"
11 namespace base {
12 class Time;
15 namespace gfx {
16 class Image;
19 // This abstract interface is used to query the profiles backend for information
20 // about the different profiles. Its sole concrete implementation is the
21 // ProfileInfoCache. This interface exists largely to assist in testing.
22 class ProfileInfoInterface {
23 public:
24 virtual size_t GetNumberOfProfiles() const = 0;
26 virtual size_t GetIndexOfProfileWithPath(
27 const base::FilePath& profile_path) const = 0;
29 virtual base::Time GetProfileActiveTimeAtIndex(size_t index) const = 0;
31 virtual base::string16 GetNameOfProfileAtIndex(size_t index) const = 0;
33 virtual base::string16 GetShortcutNameOfProfileAtIndex(
34 size_t index) const = 0;
36 virtual base::FilePath GetPathOfProfileAtIndex(size_t index) const = 0;
38 virtual base::string16 GetUserNameOfProfileAtIndex(size_t index) const = 0;
40 virtual const gfx::Image& GetAvatarIconOfProfileAtIndex(
41 size_t index) const = 0;
43 virtual std::string GetLocalAuthCredentialsOfProfileAtIndex(
44 size_t index) const = 0;
46 // Returns true if the profile at the given index is currently running any
47 // background apps.
48 virtual bool GetBackgroundStatusOfProfileAtIndex(
49 size_t index) const = 0;
51 virtual base::string16 GetGAIANameOfProfileAtIndex(size_t index) const = 0;
53 virtual base::string16 GetGAIAGivenNameOfProfileAtIndex(
54 size_t index) const = 0;
56 virtual const gfx::Image* GetGAIAPictureOfProfileAtIndex(
57 size_t index) const = 0;
59 // Checks if the GAIA picture should be used as the profile's avatar icon.
60 virtual bool IsUsingGAIAPictureOfProfileAtIndex(size_t index) const = 0;
62 // Returns whether the profile is supervised (either a legacy supervised
63 // user or a child account; see SupervisedUserService).
64 virtual bool ProfileIsSupervisedAtIndex(size_t index) const = 0;
65 // Returns whether the profile is associated with a child account.
66 virtual bool ProfileIsChildAtIndex(size_t index) const = 0;
67 // Returns whether the profile is a legacy supervised user profile.
68 virtual bool ProfileIsLegacySupervisedAtIndex(size_t index) const = 0;
70 // Returns true if the profile should be omitted from the desktop profile
71 // list (see ProfileListDesktop), so it won't appear in the avatar menu.
72 virtual bool IsOmittedProfileAtIndex(size_t index) const = 0;
74 virtual std::string GetSupervisedUserIdOfProfileAtIndex(
75 size_t index) const = 0;
77 // This profile is associated with an account but has been signed-out.
78 virtual bool ProfileIsSigninRequiredAtIndex(size_t index) const = 0;
80 // Profile is known to be ephemeral and should be deleted when closed.
81 virtual bool ProfileIsEphemeralAtIndex(size_t index) const = 0;
83 // Returns true if the profile is using the name it was assigned by default
84 // at creation (either the old-style "Lemonade" name, or the new "Profile %d"
85 // style name).
86 virtual bool ProfileIsUsingDefaultNameAtIndex(size_t index) const = 0;
88 // Returns true if the user has never manually selected a profile avatar.
89 virtual bool ProfileIsUsingDefaultAvatarAtIndex(size_t index) const = 0;
91 protected:
92 virtual ~ProfileInfoInterface() {}
95 #endif // CHROME_BROWSER_PROFILES_PROFILE_INFO_INTERFACE_H_