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

Side by Side Diff: chrome/browser/chromeos/profiles/profile_list_chromeos.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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
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_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
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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/profiles/profile_helper.h ('k') | chrome/browser/chromeos/profiles/profile_list_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698