| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 namespace chromeos { | 43 namespace chromeos { |
| 44 class LibCrosServiceLibraryImpl; | 44 class LibCrosServiceLibraryImpl; |
| 45 class ResetDefaultProxyConfigServiceTask; | 45 class ResetDefaultProxyConfigServiceTask; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace content { | 48 namespace content { |
| 49 class WebUI; | 49 class WebUI; |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace fileapi { | 52 namespace storage { |
| 53 class FileSystemContext; | 53 class FileSystemContext; |
| 54 } | 54 } |
| 55 | 55 |
| 56 namespace history { | 56 namespace history { |
| 57 class TopSites; | 57 class TopSites; |
| 58 } | 58 } |
| 59 | 59 |
| 60 namespace net { | 60 namespace net { |
| 61 class SSLConfigService; | 61 class SSLConfigService; |
| 62 } | 62 } |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 struct hash<Profile*> { | 412 struct hash<Profile*> { |
| 413 std::size_t operator()(Profile* const& p) const { | 413 std::size_t operator()(Profile* const& p) const { |
| 414 return reinterpret_cast<std::size_t>(p); | 414 return reinterpret_cast<std::size_t>(p); |
| 415 } | 415 } |
| 416 }; | 416 }; |
| 417 | 417 |
| 418 } // namespace BASE_HASH_NAMESPACE | 418 } // namespace BASE_HASH_NAMESPACE |
| 419 #endif | 419 #endif |
| 420 | 420 |
| 421 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 421 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |