Changeset 749
- Timestamp:
- 06/30/08 21:08:44 (5 months ago)
- Files:
-
- trunk/src/chrome/chromeFiles/content/miscapis.js (modified) (1 diff)
- trunk/src/chrome/chromeFiles/content/prefmanager.js (modified) (1 diff)
- trunk/src/components/greasemonkey.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/chrome/chromeFiles/content/miscapis.js
r745 r749 69 69 } 70 70 71 GM_ScriptStorage.prototype. enumerateValues = function() {72 return this.prefMan. enumerateValues();71 GM_ScriptStorage.prototype.listValues = function() { 72 return this.prefMan.listValues(); 73 73 } 74 74 trunk/src/chrome/chromeFiles/content/prefmanager.js
r745 r749 31 31 32 32 /** 33 * enumerate preferences34 */35 this.enumerateValues = function() {36 return pref.getChildList("",{});37 }33 * enumerate preferences 34 */ 35 this.listValues = function() { 36 return pref.getChildList("", {}); 37 } 38 38 39 39 /** trunk/src/components/greasemonkey.js
r748 r749 261 261 sandbox.GM_getValue = GM_hitch(storage, "getValue"); 262 262 sandbox.GM_deleteValue = GM_hitch(storage, "deleteValue"); 263 sandbox.GM_ enumerateValues = GM_hitch(storage, "enumerateValues");263 sandbox.GM_listValues = GM_hitch(storage, "listValues"); 264 264 sandbox.GM_getResourceURL = GM_hitch(resources, "getResourceURL"); 265 265 sandbox.GM_getResourceText = GM_hitch(resources, "getResourceText");
