| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 namespace content { | 50 namespace content { |
| 51 class WebUI; | 51 class WebUI; |
| 52 } | 52 } |
| 53 | 53 |
| 54 namespace fileapi { | 54 namespace fileapi { |
| 55 class FileSystemContext; | 55 class FileSystemContext; |
| 56 } | 56 } |
| 57 | 57 |
| 58 namespace history { | 58 namespace history { |
| 59 class ShortcutsBackend; | |
| 60 class TopSites; | 59 class TopSites; |
| 61 } | 60 } |
| 62 | 61 |
| 63 namespace net { | 62 namespace net { |
| 64 class SSLConfigService; | 63 class SSLConfigService; |
| 65 } | 64 } |
| 66 | 65 |
| 67 namespace user_prefs { | 66 namespace user_prefs { |
| 68 class PrefRegistrySyncable; | 67 class PrefRegistrySyncable; |
| 69 } | 68 } |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 struct hash<Profile*> { | 401 struct hash<Profile*> { |
| 403 std::size_t operator()(Profile* const& p) const { | 402 std::size_t operator()(Profile* const& p) const { |
| 404 return reinterpret_cast<std::size_t>(p); | 403 return reinterpret_cast<std::size_t>(p); |
| 405 } | 404 } |
| 406 }; | 405 }; |
| 407 | 406 |
| 408 } // namespace BASE_HASH_NAMESPACE | 407 } // namespace BASE_HASH_NAMESPACE |
| 409 #endif | 408 #endif |
| 410 | 409 |
| 411 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 410 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |