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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
164 void StopCreateSessionServiceTimer(); | 164 void StopCreateSessionServiceTimer(); |
165 | 165 |
166 void EnsureRequestContextCreated() { | 166 void EnsureRequestContextCreated() { |
167 GetRequestContext(); | 167 GetRequestContext(); |
168 } | 168 } |
169 | 169 |
170 void EnsureSessionServiceCreated(); | 170 void EnsureSessionServiceCreated(); |
171 | 171 |
172 void RegisterComponentExtensions(); | 172 void RegisterComponentExtensions(); |
173 | 173 |
174 void InstallDefaultApps(); | |
Mattias Nissler (ping if slow)
2011/09/26 17:26:37
Unrelated change?
pastarmovj
2011/09/29 15:15:03
Yes this is part of a CL that is landed on trunk b
| |
175 | |
176 ExtensionPrefValueMap* GetExtensionPrefValueMap(); | 174 ExtensionPrefValueMap* GetExtensionPrefValueMap(); |
177 | 175 |
178 void CreateQuotaManagerAndClients(); | 176 void CreateQuotaManagerAndClients(); |
179 | 177 |
180 SpellCheckProfile* GetSpellCheckProfile(); | 178 SpellCheckProfile* GetSpellCheckProfile(); |
181 | 179 |
182 virtual void SetDownloadManagerDelegate( | 180 virtual void SetDownloadManagerDelegate( |
183 ChromeDownloadManagerDelegate* delegate); | 181 ChromeDownloadManagerDelegate* delegate); |
184 | 182 |
185 NotificationRegistrar registrar_; | 183 NotificationRegistrar registrar_; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
292 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 290 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
293 | 291 |
294 Profile::Delegate* delegate_; | 292 Profile::Delegate* delegate_; |
295 | 293 |
296 chrome_browser_net::Predictor* predictor_; | 294 chrome_browser_net::Predictor* predictor_; |
297 | 295 |
298 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 296 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
299 }; | 297 }; |
300 | 298 |
301 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 299 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |