Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/profile_impl.h

Issue 3243005: Revert 57715 - Add a helper class that keeps per-profile information for File... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/profile_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_PROFILE_IMPL_H_ 7 #ifndef CHROME_BROWSER_PROFILE_IMPL_H_
8 #define CHROME_BROWSER_PROFILE_IMPL_H_ 8 #define CHROME_BROWSER_PROFILE_IMPL_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual HistoryService* GetHistoryServiceWithoutCreating(); 52 virtual HistoryService* GetHistoryServiceWithoutCreating();
53 virtual AutocompleteClassifier* GetAutocompleteClassifier(); 53 virtual AutocompleteClassifier* GetAutocompleteClassifier();
54 virtual WebDataService* GetWebDataService(ServiceAccessType sat); 54 virtual WebDataService* GetWebDataService(ServiceAccessType sat);
55 virtual WebDataService* GetWebDataServiceWithoutCreating(); 55 virtual WebDataService* GetWebDataServiceWithoutCreating();
56 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat); 56 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat);
57 virtual PrefService* GetPrefs(); 57 virtual PrefService* GetPrefs();
58 virtual TemplateURLModel* GetTemplateURLModel(); 58 virtual TemplateURLModel* GetTemplateURLModel();
59 virtual TemplateURLFetcher* GetTemplateURLFetcher(); 59 virtual TemplateURLFetcher* GetTemplateURLFetcher();
60 virtual DownloadManager* GetDownloadManager(); 60 virtual DownloadManager* GetDownloadManager();
61 virtual PersonalDataManager* GetPersonalDataManager(); 61 virtual PersonalDataManager* GetPersonalDataManager();
62 virtual FileSystemHostContext* GetFileSystemHostContext();
63 virtual void InitThemes(); 62 virtual void InitThemes();
64 virtual void SetTheme(Extension* extension); 63 virtual void SetTheme(Extension* extension);
65 virtual void SetNativeTheme(); 64 virtual void SetNativeTheme();
66 virtual void ClearTheme(); 65 virtual void ClearTheme();
67 virtual Extension* GetTheme(); 66 virtual Extension* GetTheme();
68 virtual BrowserThemeProvider* GetThemeProvider(); 67 virtual BrowserThemeProvider* GetThemeProvider();
69 virtual bool HasCreatedDownloadManager() const; 68 virtual bool HasCreatedDownloadManager() const;
70 virtual URLRequestContextGetter* GetRequestContext(); 69 virtual URLRequestContextGetter* GetRequestContext();
71 virtual URLRequestContextGetter* GetRequestContextForMedia(); 70 virtual URLRequestContextGetter* GetRequestContextForMedia();
72 virtual URLRequestContextGetter* GetRequestContextForExtensions(); 71 virtual URLRequestContextGetter* GetRequestContextForExtensions();
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 scoped_refptr<PasswordStore> password_store_; 189 scoped_refptr<PasswordStore> password_store_;
191 scoped_refptr<SessionService> session_service_; 190 scoped_refptr<SessionService> session_service_;
192 scoped_ptr<BrowserThemeProvider> theme_provider_; 191 scoped_ptr<BrowserThemeProvider> theme_provider_;
193 scoped_refptr<WebKitContext> webkit_context_; 192 scoped_refptr<WebKitContext> webkit_context_;
194 scoped_ptr<DesktopNotificationService> desktop_notification_service_; 193 scoped_ptr<DesktopNotificationService> desktop_notification_service_;
195 scoped_ptr<BackgroundContentsService> background_contents_service_; 194 scoped_ptr<BackgroundContentsService> background_contents_service_;
196 scoped_ptr<BackgroundModeManager> background_mode_manager_; 195 scoped_ptr<BackgroundModeManager> background_mode_manager_;
197 scoped_ptr<StatusTray> status_tray_; 196 scoped_ptr<StatusTray> status_tray_;
198 scoped_refptr<PersonalDataManager> personal_data_manager_; 197 scoped_refptr<PersonalDataManager> personal_data_manager_;
199 scoped_ptr<PinnedTabService> pinned_tab_service_; 198 scoped_ptr<PinnedTabService> pinned_tab_service_;
200 scoped_refptr<FileSystemHostContext> file_system_host_context_;
201 bool history_service_created_; 199 bool history_service_created_;
202 bool favicon_service_created_; 200 bool favicon_service_created_;
203 bool created_web_data_service_; 201 bool created_web_data_service_;
204 bool created_password_store_; 202 bool created_password_store_;
205 bool created_download_manager_; 203 bool created_download_manager_;
206 bool created_theme_provider_; 204 bool created_theme_provider_;
207 // Whether or not the last session exited cleanly. This is set only once. 205 // Whether or not the last session exited cleanly. This is set only once.
208 bool last_session_exited_cleanly_; 206 bool last_session_exited_cleanly_;
209 207
210 base::OneShotTimer<ProfileImpl> create_session_service_timer_; 208 base::OneShotTimer<ProfileImpl> create_session_service_timer_;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 chromeos::Preferences chromeos_preferences_; 240 chromeos::Preferences chromeos_preferences_;
243 241
244 scoped_refptr<chromeos::ProxyConfigServiceImpl> 242 scoped_refptr<chromeos::ProxyConfigServiceImpl>
245 chromeos_proxy_config_service_impl_; 243 chromeos_proxy_config_service_impl_;
246 #endif 244 #endif
247 245
248 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 246 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
249 }; 247 };
250 248
251 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ 249 #endif // CHROME_BROWSER_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698