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

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

Issue 6820065: Profile shouldn't own PinnedTabService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, fix compile error Created 9 years, 8 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/profiles/profile.h ('k') | chrome/browser/profiles/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) 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; 240 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_;
241 scoped_refptr<WebDataService> web_data_service_; 241 scoped_refptr<WebDataService> web_data_service_;
242 scoped_refptr<PasswordStore> password_store_; 242 scoped_refptr<PasswordStore> password_store_;
243 scoped_refptr<SessionService> session_service_; 243 scoped_refptr<SessionService> session_service_;
244 scoped_refptr<WebKitContext> webkit_context_; 244 scoped_refptr<WebKitContext> webkit_context_;
245 scoped_ptr<DesktopNotificationService> desktop_notification_service_; 245 scoped_ptr<DesktopNotificationService> desktop_notification_service_;
246 scoped_ptr<BackgroundContentsService> background_contents_service_; 246 scoped_ptr<BackgroundContentsService> background_contents_service_;
247 scoped_ptr<BackgroundModeManager> background_mode_manager_; 247 scoped_ptr<BackgroundModeManager> background_mode_manager_;
248 scoped_ptr<StatusTray> status_tray_; 248 scoped_ptr<StatusTray> status_tray_;
249 scoped_refptr<PersonalDataManager> personal_data_manager_; 249 scoped_refptr<PersonalDataManager> personal_data_manager_;
250 scoped_ptr<PinnedTabService> pinned_tab_service_;
251 scoped_refptr<fileapi::FileSystemContext> file_system_context_; 250 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
252 scoped_ptr<BrowserSignin> browser_signin_; 251 scoped_ptr<BrowserSignin> browser_signin_;
253 bool history_service_created_; 252 bool history_service_created_;
254 bool favicon_service_created_; 253 bool favicon_service_created_;
255 bool created_web_data_service_; 254 bool created_web_data_service_;
256 bool created_password_store_; 255 bool created_password_store_;
257 bool created_download_manager_; 256 bool created_download_manager_;
258 bool clear_local_state_on_exit_; 257 bool clear_local_state_on_exit_;
259 // Whether or not the last session exited cleanly. This is set only once. 258 // Whether or not the last session exited cleanly. This is set only once.
260 bool last_session_exited_cleanly_; 259 bool last_session_exited_cleanly_;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 #endif 306 #endif
308 307
309 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 308 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
310 309
311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 310 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
312 311
313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 312 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
314 }; 313 };
315 314
316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 315 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698