| OLD | NEW |
| 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_PROFILES_PROFILE_LIST_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_LIST_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_LIST_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_LIST_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/profiles/profile_list.h" | 8 #include "chrome/browser/profiles/profile_list.h" |
| 9 | 9 |
| 10 #include <stddef.h> |
| 11 |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 14 #include "base/macros.h" |
| 15 |
| 12 class ProfileInfoInterface; | 16 class ProfileInfoInterface; |
| 13 | 17 |
| 14 namespace chromeos { | 18 namespace chromeos { |
| 15 | 19 |
| 16 // This model represents profiles corresponding to logged-in ChromeOS users. | 20 // This model represents profiles corresponding to logged-in ChromeOS users. |
| 17 class ProfileListChromeOS : public ProfileList { | 21 class ProfileListChromeOS : public ProfileList { |
| 18 public: | 22 public: |
| 19 explicit ProfileListChromeOS(ProfileInfoInterface* profile_cache); | 23 explicit ProfileListChromeOS(ProfileInfoInterface* profile_cache); |
| 20 ~ProfileListChromeOS() override; | 24 ~ProfileListChromeOS() override; |
| 21 | 25 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 38 | 42 |
| 39 // List of built "menu items." | 43 // List of built "menu items." |
| 40 std::vector<AvatarMenu::Item*> items_; | 44 std::vector<AvatarMenu::Item*> items_; |
| 41 | 45 |
| 42 DISALLOW_COPY_AND_ASSIGN(ProfileListChromeOS); | 46 DISALLOW_COPY_AND_ASSIGN(ProfileListChromeOS); |
| 43 }; | 47 }; |
| 44 | 48 |
| 45 } // namespace chromeos | 49 } // namespace chromeos |
| 46 | 50 |
| 47 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_LIST_CHROMEOS_H_ | 51 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_LIST_CHROMEOS_H_ |
| OLD | NEW |