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

Unified Diff: chrome/browser/extensions/api/settings_private/prefs_util.h

Issue 1315173003: PrefObject -> PrefData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/settings_private/prefs_util.h
diff --git a/chrome/browser/extensions/api/settings_private/prefs_util.h b/chrome/browser/extensions/api/settings_private/prefs_util.h
index 0387459603505009fbaefaf1581e78d658c1c59b..8aa341b4517e48749efafab315779a5ecdc3efb3 100644
--- a/chrome/browser/extensions/api/settings_private/prefs_util.h
+++ b/chrome/browser/extensions/api/settings_private/prefs_util.h
@@ -31,8 +31,8 @@ class PrefsUtil {
const TypedPrefMap& GetWhitelistedKeys();
// Gets the value of the pref with the given |name|. Returns a pointer to an
- // empty PrefObject if no pref is found for |name|.
- virtual scoped_ptr<api::settings_private::PrefObject> GetPref(
+ // empty PrefData if no pref is found for |name|.
+ virtual scoped_ptr<api::settings_private::PrefData> GetPref(
const std::string& name);
// Sets the pref with the given name and value in the proper PrefService.
@@ -66,7 +66,7 @@ class PrefsUtil {
api::settings_private::PrefType GetType(const std::string& name,
base::Value::Type type);
- scoped_ptr<api::settings_private::PrefObject> GetCrosSettingsPref(
+ scoped_ptr<api::settings_private::PrefData> GetCrosSettingsPref(
const std::string& name);
bool SetCrosSettingsPref(const std::string& name, const base::Value* value);

Powered by Google App Engine
This is Rietveld 408576698