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