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

Unified Diff: third_party/closure_compiler/externs/settings_private.js

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
« no previous file with comments | « chrome/common/extensions/api/settings_private.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/settings_private.js
diff --git a/third_party/closure_compiler/externs/settings_private.js b/third_party/closure_compiler/externs/settings_private.js
index 8cc4619e8cba4e1bbe1a2f034c0831f07a53861b..904edcf91b62e9cdb9488cab52e22186a1b8be03 100644
--- a/third_party/closure_compiler/externs/settings_private.js
+++ b/third_party/closure_compiler/externs/settings_private.js
@@ -43,9 +43,9 @@ chrome.settingsPrivate.PolicyEnforcement = {
* policySource: (!chrome.settingsPrivate.PolicySource|undefined),
* policyEnforcement: (!chrome.settingsPrivate.PolicyEnforcement|undefined)
* }}
- * @see https://developer.chrome.com/extensions/settingsPrivate#type-PrefObject
+ * @see https://developer.chrome.com/extensions/settingsPrivate#type-PrefData
*/
-var PrefObject;
+var PrefData;
/**
* Sets a settings value.
@@ -60,7 +60,7 @@ chrome.settingsPrivate.setPref = function(name, value, pageId, callback) {};
/**
* Gets an array of all the prefs.
- * @param {function(!Array<PrefObject>):void} callback
+ * @param {function(!Array<PrefData>):void} callback
* @see https://developer.chrome.com/extensions/settingsPrivate#method-getAllPrefs
*/
chrome.settingsPrivate.getAllPrefs = function(callback) {};
@@ -68,7 +68,7 @@ chrome.settingsPrivate.getAllPrefs = function(callback) {};
/**
* Gets the value of a specific pref.
* @param {string} name
- * @param {function(PrefObject):void} callback
+ * @param {function(PrefData):void} callback
* @see https://developer.chrome.com/extensions/settingsPrivate#method-getPref
*/
chrome.settingsPrivate.getPref = function(name, callback) {};
« no previous file with comments | « chrome/common/extensions/api/settings_private.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698