| Index: chrome/common/extensions/api/settings_private.idl
|
| diff --git a/chrome/common/extensions/api/settings_private.idl b/chrome/common/extensions/api/settings_private.idl
|
| index 41e3b8faf2db5b9b4229dd5b709cf67cd13eb859..ffbbed1c6c2f256de76f2aa048915c9b29eba692 100644
|
| --- a/chrome/common/extensions/api/settings_private.idl
|
| +++ b/chrome/common/extensions/api/settings_private.idl
|
| @@ -14,7 +14,7 @@ namespace settingsPrivate {
|
| // Policy enforcement of a pref.
|
| enum PolicyEnforcement { ENFORCED, RECOMMENDED };
|
|
|
| - dictionary PrefObject {
|
| + dictionary PrefData {
|
| // The key for the pref.
|
| DOMString key;
|
|
|
| @@ -34,8 +34,8 @@ namespace settingsPrivate {
|
| };
|
|
|
| callback OnPrefSetCallback = void (boolean success);
|
| - callback GetAllPrefsCallback = void (PrefObject[] prefs);
|
| - callback GetPrefCallback = void (PrefObject pref);
|
| + callback GetAllPrefsCallback = void (PrefData[] prefs);
|
| + callback GetPrefCallback = void (PrefData pref);
|
|
|
| interface Functions {
|
| // Sets a settings value.
|
| @@ -57,6 +57,6 @@ namespace settingsPrivate {
|
| // Fired when a set of prefs has changed.
|
| //
|
| // |prefs| The prefs that changed.
|
| - static void onPrefsChanged(PrefObject[] prefs);
|
| + static void onPrefsChanged(PrefData[] prefs);
|
| };
|
| };
|
|
|