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

Unified Diff: chrome/browser/policy/configuration_policy_pref_store.h

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespaces + fixes for trybot Created 10 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
Index: chrome/browser/policy/configuration_policy_pref_store.h
diff --git a/chrome/browser/policy/configuration_policy_pref_store.h b/chrome/browser/policy/configuration_policy_pref_store.h
index 820306aa74fdf0c4374d4e420639faf85557be28..1f918013e4e7271a92eea773fe012a324ad15e03 100644
--- a/chrome/browser/policy/configuration_policy_pref_store.h
+++ b/chrome/browser/policy/configuration_policy_pref_store.h
@@ -42,15 +42,17 @@ class ConfigurationPolicyPrefStore : public PrefStore,
virtual void Apply(ConfigurationPolicyType setting, Value* value);
// Creates a ConfigurationPolicyPrefStore that reads managed platform policy.
- static ConfigurationPolicyPrefStore* CreateManagedPlatformPolicyPrefStore();
+ static scoped_refptr<ConfigurationPolicyPrefStore>
Mattias Nissler (ping if slow) 2010/12/20 14:50:02 This is not needed. If the function name is Create
battre 2010/12/21 18:51:59 Done.
+ CreateManagedPlatformPolicyPrefStore();
// Creates a ConfigurationPolicyPrefStore that supplies policy from
// the device management server.
- static ConfigurationPolicyPrefStore* CreateDeviceManagementPolicyPrefStore(
- Profile* profile);
+ static scoped_refptr<ConfigurationPolicyPrefStore>
+ CreateDeviceManagementPolicyPrefStore(Profile* profile);
// Creates a ConfigurationPolicyPrefStore that reads recommended policy.
- static ConfigurationPolicyPrefStore* CreateRecommendedPolicyPrefStore();
+ static scoped_refptr<ConfigurationPolicyPrefStore>
+ CreateRecommendedPolicyPrefStore();
// Returns the default policy definition list for Chrome.
static const ConfigurationPolicyProvider::PolicyDefinitionList*

Powered by Google App Engine
This is Rietveld 408576698