| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |