Cleanup: new common GetProfileSwitcherTextForItem for use on both Win and Mac
[chromium-blink-merge.git] / chrome / browser / profiles / profile_list_desktop.h
blobef9ca8e6c968b641d73e9c6c4c887e637a451ace
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_
8 #include "chrome/browser/profiles/profile_list.h"
10 #include <vector>
12 class Browser;
13 class ProfileInfoInterface;
15 // This model represents the profiles added to desktop Chrome (as opposed to
16 // Chrome OS). Profiles marked not to appear in the list will be omitted
17 // throughout.
18 class ProfileListDesktop : public ProfileList {
19 public:
20 explicit ProfileListDesktop(ProfileInfoInterface* profile_cache);
21 ~ProfileListDesktop() override;
23 // ProfileList overrides:
24 size_t GetNumberOfItems() const override;
25 const AvatarMenu::Item& GetItemAt(size_t index) const override;
26 void RebuildMenu() override;
27 // Returns the menu index of the profile at |index| in the ProfileInfoCache.
28 // The profile index must exist, and it may not be marked as omitted from the
29 // menu.
30 size_t MenuIndexFromProfileIndex(size_t index) override;
31 void ActiveProfilePathChanged(base::FilePath& path) override;
33 private:
34 void ClearMenu();
36 // The cache that provides the profile information. Weak.
37 ProfileInfoInterface* profile_info_;
39 // The path of the currently active profile.
40 base::FilePath active_profile_path_;
42 // List of built "menu items."
43 std::vector<AvatarMenu::Item*> items_;
45 // The number of profiles that were omitted from the list when it was built.
46 size_t omitted_item_count_;
48 DISALLOW_COPY_AND_ASSIGN(ProfileListDesktop);
51 #endif // CHROME_BROWSER_PROFILES_PROFILE_LIST_DESKTOP_H_