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

Side by Side Diff: chrome/browser/profiles/profile_attributes_storage.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_
7 7
8 #include <stddef.h>
9
10 #include "base/macros.h"
11
8 class ProfileAttributesEntry; 12 class ProfileAttributesEntry;
9 13
10 class ProfileAttributesStorage { 14 class ProfileAttributesStorage {
11 public: 15 public:
12 ProfileAttributesStorage() {} 16 ProfileAttributesStorage() {}
13 ~ProfileAttributesStorage() {} 17 ~ProfileAttributesStorage() {}
14 18
15 // If the |supervised_user_id| is non-empty, the profile will be marked to be 19 // If the |supervised_user_id| is non-empty, the profile will be marked to be
16 // omitted from the avatar-menu list on desktop versions. This is used while a 20 // omitted from the avatar-menu list on desktop versions. This is used while a
17 // supervised user is in the process of being registered with the server. Use 21 // supervised user is in the process of being registered with the server. Use
(...skipping 21 matching lines...) Expand all
39 virtual bool GetProfileAttributesWithPath( 43 virtual bool GetProfileAttributesWithPath(
40 const base::FilePath& path, ProfileAttributesEntry** entry) = 0; 44 const base::FilePath& path, ProfileAttributesEntry** entry) = 0;
41 45
42 // Returns the count of known profiles. 46 // Returns the count of known profiles.
43 virtual size_t GetNumberOfProfiles() const = 0; 47 virtual size_t GetNumberOfProfiles() const = 0;
44 48
45 DISALLOW_COPY_AND_ASSIGN(ProfileAttributesStorage); 49 DISALLOW_COPY_AND_ASSIGN(ProfileAttributesStorage);
46 }; 50 };
47 51
48 #endif // CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_ 52 #endif // CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_STORAGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_attributes_entry.h ('k') | chrome/browser/profiles/profile_attributes_storage_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698