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

Side by Side Diff: chrome/browser/profiles/profile_attributes_entry.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
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_attributes_storage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_ENTRY_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_ENTRY_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_ENTRY_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_ENTRY_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/macros.h"
11 #include "base/strings/string16.h" 14 #include "base/strings/string16.h"
12 #include "base/time/time.h" 15 #include "base/time/time.h"
13 16
14 namespace gfx { 17 namespace gfx {
15 class Image; 18 class Image;
16 } 19 }
17 20
18 class ProfileInfoCache; 21 class ProfileInfoCache;
19 22
20 class ProfileAttributesEntry { 23 class ProfileAttributesEntry {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 friend class ProfileInfoCache; 134 friend class ProfileInfoCache;
132 void Initialize(ProfileInfoCache* cache, const base::FilePath& path); 135 void Initialize(ProfileInfoCache* cache, const base::FilePath& path);
133 size_t profile_index() const; 136 size_t profile_index() const;
134 ProfileInfoCache* profile_info_cache_; 137 ProfileInfoCache* profile_info_cache_;
135 base::FilePath profile_path_; 138 base::FilePath profile_path_;
136 139
137 DISALLOW_COPY_AND_ASSIGN(ProfileAttributesEntry); 140 DISALLOW_COPY_AND_ASSIGN(ProfileAttributesEntry);
138 }; 141 };
139 142
140 #endif // CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_ENTRY_H_ 143 #endif // CHROME_BROWSER_PROFILES_PROFILE_ATTRIBUTES_ENTRY_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_attributes_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698