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

Unified Diff: chrome/common/extensions/api/settings_private.idl

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/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);
};
};
« no previous file with comments | « chrome/browser/resources/settings/prefs/prefs.js ('k') | third_party/closure_compiler/externs/settings_private.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698