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

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

Issue 7977018: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix race condition in ExtensionSettingsUIWrapper::Core Created 9 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
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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 // Keep |prefs_| on top for destruction order because |extension_prefs_|, 191 // Keep |prefs_| on top for destruction order because |extension_prefs_|,
192 // |net_pref_observer_|, |web_resource_service_|, and |io_data_| store 192 // |net_pref_observer_|, |web_resource_service_|, and |io_data_| store
193 // pointers to |prefs_| and shall be destructed first. 193 // pointers to |prefs_| and shall be destructed first.
194 scoped_ptr<PrefService> prefs_; 194 scoped_ptr<PrefService> prefs_;
195 scoped_ptr<PrefService> otr_prefs_; 195 scoped_ptr<PrefService> otr_prefs_;
196 scoped_ptr<VisitedLinkEventListener> visited_link_event_listener_; 196 scoped_ptr<VisitedLinkEventListener> visited_link_event_listener_;
197 scoped_ptr<VisitedLinkMaster> visited_link_master_; 197 scoped_ptr<VisitedLinkMaster> visited_link_master_;
198 // Keep extension_prefs_ on top of extension_service_ because the latter 198 // Keep extension_prefs_ on top of extension_service_ because the latter
199 // maintains a pointer to the first and shall be destructed first. 199 // maintains a pointer to the first and shall be destructed first.
200 scoped_ptr<ExtensionPrefs> extension_prefs_; 200 scoped_ptr<ExtensionPrefs> extension_prefs_;
201 scoped_refptr<ExtensionSettings> extension_settings_;
202 scoped_ptr<ExtensionService> extension_service_; 201 scoped_ptr<ExtensionService> extension_service_;
203 scoped_refptr<UserScriptMaster> user_script_master_; 202 scoped_refptr<UserScriptMaster> user_script_master_;
204 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; 203 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_;
205 scoped_ptr<ExtensionProcessManager> extension_process_manager_; 204 scoped_ptr<ExtensionProcessManager> extension_process_manager_;
206 scoped_refptr<ExtensionMessageService> extension_message_service_; 205 scoped_refptr<ExtensionMessageService> extension_message_service_;
207 scoped_ptr<ExtensionEventRouter> extension_event_router_; 206 scoped_ptr<ExtensionEventRouter> extension_event_router_;
208 scoped_ptr<ExtensionNavigationObserver> extension_navigation_observer_; 207 scoped_ptr<ExtensionNavigationObserver> extension_navigation_observer_;
209 scoped_refptr<ExtensionSpecialStoragePolicy> 208 scoped_refptr<ExtensionSpecialStoragePolicy>
210 extension_special_storage_policy_; 209 extension_special_storage_policy_;
211 scoped_ptr<SSLHostState> ssl_host_state_; 210 scoped_ptr<SSLHostState> ssl_host_state_;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; 296 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
298 297
299 Profile::Delegate* delegate_; 298 Profile::Delegate* delegate_;
300 299
301 chrome_browser_net::Predictor* predictor_; 300 chrome_browser_net::Predictor* predictor_;
302 301
303 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 302 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
304 }; 303 };
305 304
306 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 305 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/syncable_extension_settings_storage.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698