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

Unified Diff: chrome/browser/prefs/chrome_pref_service_factory.h

Issue 11573065: Not for check-in. Manually reviewable parts of https://codereview.chromium.org/11570009/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/prefs/chrome_pref_service_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/chrome_pref_service_factory.h
diff --git a/chrome/browser/prefs/chrome_pref_service_factory.h b/chrome/browser/prefs/chrome_pref_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..e4e4328d01f40d350c9851cbd71bae74e374f7c1
--- /dev/null
+++ b/chrome/browser/prefs/chrome_pref_service_factory.h
@@ -0,0 +1,73 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_
+#define CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_
+
+#include "chrome/browser/prefs/pref_service_builder.h"
+
+namespace base {
+class SequencedTaskRunner;
+}
+
+namespace policy {
+class PolicyService;
+}
+
+class FilePath;
+class PrefServiceBuilder;
+class PrefServiceSimple;
+class PrefServiceSyncable;
+class PrefStore;
+
+class ChromePrefServiceFactory {
+ public:
+ ChromePrefServiceFactory();
+ virtual ~ChromePrefServiceFactory();
+
+ // Factory methods that create and initialize a new instance of a
+ // PrefService for Chrome with the applicable PrefStores. The
+ // |pref_filename| points to the user preference file. This is the
+ // usual way to create a new PrefService.
+ // |extension_pref_store| is used as the source for extension-controlled
+ // preferences and may be NULL.
+ // |policy_service| is used as the source for mandatory or recommended
+ // policies.
+ // The PrefService takes ownership of |extension_pref_store|.
+ // If |async| is true, asynchronous version is used.
+ // Notifies using PREF_INITIALIZATION_COMPLETED in the end. Details is set to
+ // the created PrefService or NULL if creation has failed. Note, it is
+ // guaranteed that in asynchronous version initialization happens after this
+ // function returned.
+
+ PrefServiceSimple* CreateLocalState(
+ const FilePath& pref_filename,
+ base::SequencedTaskRunner* pref_io_task_runner,
+ policy::PolicyService* policy_service,
+ PrefStore* extension_prefs,
+ bool async);
+
+ PrefServiceSyncable* CreateProfilePrefs(
+ const FilePath& pref_filename,
+ base::SequencedTaskRunner* pref_io_task_runner,
+ policy::PolicyService* policy_service,
+ PrefStore* extension_prefs,
+ bool async);
+
+ private:
+ void PrepareBuilder(
+ const FilePath& pref_filename,
+ base::SequencedTaskRunner* pref_io_task_runner,
+ policy::PolicyService* policy_service,
+ PrefStore* extension_prefs,
+ bool async);
+
+ void ResetDefaultState();
+
+ PrefServiceBuilder builder_;
+
+ DISALLOW_COPY_AND_ASSIGN(ChromePrefServiceFactory);
+};
+
+#endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/prefs/chrome_pref_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698