| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 struct hash<Profile*> { | 522 struct hash<Profile*> { |
| 523 std::size_t operator()(Profile* const& p) const { | 523 std::size_t operator()(Profile* const& p) const { |
| 524 return reinterpret_cast<std::size_t>(p); | 524 return reinterpret_cast<std::size_t>(p); |
| 525 } | 525 } |
| 526 }; | 526 }; |
| 527 | 527 |
| 528 } // namespace BASE_HASH_NAMESPACE | 528 } // namespace BASE_HASH_NAMESPACE |
| 529 #endif | 529 #endif |
| 530 | 530 |
| 531 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 531 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
| OLD | NEW |