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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 224 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
225 | 225 |
226 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 226 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
227 scoped_refptr<HostZoomMap> host_zoom_map_; | 227 scoped_refptr<HostZoomMap> host_zoom_map_; |
228 scoped_refptr<GeolocationContentSettingsMap> | 228 scoped_refptr<GeolocationContentSettingsMap> |
229 geolocation_content_settings_map_; | 229 geolocation_content_settings_map_; |
230 scoped_refptr<GeolocationPermissionContext> | 230 scoped_refptr<GeolocationPermissionContext> |
231 geolocation_permission_context_; | 231 geolocation_permission_context_; |
232 scoped_refptr<UserStyleSheetWatcher> user_style_sheet_watcher_; | 232 scoped_refptr<UserStyleSheetWatcher> user_style_sheet_watcher_; |
233 scoped_ptr<FindBarState> find_bar_state_; | 233 scoped_ptr<FindBarState> find_bar_state_; |
234 scoped_ptr<ChromeDownloadManagerDelegate> download_manager_delegate_; | 234 scoped_refptr<ChromeDownloadManagerDelegate> download_manager_delegate_; |
235 scoped_refptr<DownloadManager> download_manager_; | 235 scoped_refptr<DownloadManager> download_manager_; |
236 scoped_refptr<HistoryService> history_service_; | 236 scoped_refptr<HistoryService> history_service_; |
237 scoped_refptr<FaviconService> favicon_service_; | 237 scoped_refptr<FaviconService> favicon_service_; |
238 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; | 238 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
239 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; | 239 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; |
240 scoped_refptr<WebDataService> web_data_service_; | 240 scoped_refptr<WebDataService> web_data_service_; |
241 scoped_refptr<PasswordStore> password_store_; | 241 scoped_refptr<PasswordStore> password_store_; |
242 scoped_refptr<WebKitContext> webkit_context_; | 242 scoped_refptr<WebKitContext> webkit_context_; |
243 scoped_refptr<PersonalDataManager> personal_data_manager_; | 243 scoped_refptr<PersonalDataManager> personal_data_manager_; |
244 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 244 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 293 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
294 | 294 |
295 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 295 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
296 | 296 |
297 Profile::Delegate* delegate_; | 297 Profile::Delegate* delegate_; |
298 | 298 |
299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
300 }; | 300 }; |
301 | 301 |
302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |