| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 void CreatePasswordStore(); | 167 void CreatePasswordStore(); |
| 168 | 168 |
| 169 void StopCreateSessionServiceTimer(); | 169 void StopCreateSessionServiceTimer(); |
| 170 | 170 |
| 171 void EnsureRequestContextCreated() { | 171 void EnsureRequestContextCreated() { |
| 172 GetRequestContext(); | 172 GetRequestContext(); |
| 173 } | 173 } |
| 174 | 174 |
| 175 void EnsureSessionServiceCreated(); | 175 void EnsureSessionServiceCreated(); |
| 176 | 176 |
| 177 void RegisterComponentExtensions(); | |
| 178 | |
| 179 ExtensionPrefValueMap* GetExtensionPrefValueMap(); | 177 ExtensionPrefValueMap* GetExtensionPrefValueMap(); |
| 180 | 178 |
| 181 void CreateQuotaManagerAndClients(); | 179 void CreateQuotaManagerAndClients(); |
| 182 | 180 |
| 183 SpellCheckProfile* GetSpellCheckProfile(); | 181 SpellCheckProfile* GetSpellCheckProfile(); |
| 184 | 182 |
| 185 content::NotificationRegistrar registrar_; | 183 content::NotificationRegistrar registrar_; |
| 186 PrefChangeRegistrar pref_change_registrar_; | 184 PrefChangeRegistrar pref_change_registrar_; |
| 187 | 185 |
| 188 FilePath path_; | 186 FilePath path_; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 286 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 289 | 287 |
| 290 Profile::Delegate* delegate_; | 288 Profile::Delegate* delegate_; |
| 291 | 289 |
| 292 chrome_browser_net::Predictor* predictor_; | 290 chrome_browser_net::Predictor* predictor_; |
| 293 | 291 |
| 294 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 292 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 295 }; | 293 }; |
| 296 | 294 |
| 297 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 295 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |