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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 namespace chromeos { | 53 namespace chromeos { |
54 class LibCrosServiceLibraryImpl; | 54 class LibCrosServiceLibraryImpl; |
55 class ResetDefaultProxyConfigServiceTask; | 55 class ResetDefaultProxyConfigServiceTask; |
56 } | 56 } |
57 | 57 |
58 namespace chrome_browser_net { | 58 namespace chrome_browser_net { |
59 class Predictor; | 59 class Predictor; |
60 } | 60 } |
61 | 61 |
62 namespace content { | 62 namespace content { |
63 class SpeechInputPreferences; | 63 class SpeechRecognitionPreferences; |
64 class WebUI; | 64 class WebUI; |
65 } | 65 } |
66 | 66 |
67 namespace android { | 67 namespace android { |
68 class TabContentsProvider; | 68 class TabContentsProvider; |
69 } | 69 } |
70 | 70 |
71 namespace fileapi { | 71 namespace fileapi { |
72 class FileSystemContext; | 72 class FileSystemContext; |
73 } | 73 } |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 struct hash<Profile*> { | 525 struct hash<Profile*> { |
526 std::size_t operator()(Profile* const& p) const { | 526 std::size_t operator()(Profile* const& p) const { |
527 return reinterpret_cast<std::size_t>(p); | 527 return reinterpret_cast<std::size_t>(p); |
528 } | 528 } |
529 }; | 529 }; |
530 | 530 |
531 } // namespace BASE_HASH_NAMESPACE | 531 } // namespace BASE_HASH_NAMESPACE |
532 #endif | 532 #endif |
533 | 533 |
534 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 534 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
OLD | NEW |