| 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> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "components/domain_reliability/clear_mode.h" | 15 #include "components/domain_reliability/clear_mode.h" |
| 16 #include "content/public/browser/browser_context.h" | 16 #include "content/public/browser/browser_context.h" |
| 17 #include "content/public/browser/content_browser_client.h" | 17 #include "content/public/browser/content_browser_client.h" |
| 18 | 18 |
| 19 class ChromeAppCacheService; | 19 class ChromeAppCacheService; |
| 20 class DevToolsNetworkController; | 20 class DevToolsNetworkController; |
| 21 class ExtensionSpecialStoragePolicy; | 21 class ExtensionSpecialStoragePolicy; |
| 22 class FaviconService; | 22 class FaviconService; |
| 23 class HostContentSettingsMap; | 23 class HostContentSettingsMap; |
| 24 class PrefProxyConfigTracker; | 24 class PrefProxyConfigTracker; |
| 25 class PrefService; | 25 class PrefService; |
| 26 class PromoCounter; | 26 class PromoCounter; |
| 27 class ProtocolHandlerRegistry; | 27 class ProtocolHandlerRegistry; |
| 28 class TestingProfile; | 28 class TestingProfile; |
| 29 class WebDataService; | |
| 30 | 29 |
| 31 namespace android { | 30 namespace android { |
| 32 class TabContentsProvider; | 31 class TabContentsProvider; |
| 33 } | 32 } |
| 34 | 33 |
| 35 namespace base { | 34 namespace base { |
| 36 class SequencedTaskRunner; | 35 class SequencedTaskRunner; |
| 37 class Time; | 36 class Time; |
| 38 } | 37 } |
| 39 | 38 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 struct hash<Profile*> { | 410 struct hash<Profile*> { |
| 412 std::size_t operator()(Profile* const& p) const { | 411 std::size_t operator()(Profile* const& p) const { |
| 413 return reinterpret_cast<std::size_t>(p); | 412 return reinterpret_cast<std::size_t>(p); |
| 414 } | 413 } |
| 415 }; | 414 }; |
| 416 | 415 |
| 417 } // namespace BASE_HASH_NAMESPACE | 416 } // namespace BASE_HASH_NAMESPACE |
| 418 #endif | 417 #endif |
| 419 | 418 |
| 420 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 419 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |