Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/ext/background.js

Issue 29339112: Issue 3716 - Split up files stored in storage.local (Closed)
Patch Set: Created March 30, 2016, 4:50 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/io.js » ('j') | lib/io.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/background.js
===================================================================
--- a/chrome/ext/background.js
+++ b/chrome/ext/background.js
@@ -548,6 +548,10 @@
items[key] = value;
chrome.storage.local.set(items, callback);
},
+ setMultiple: function(items, callback)
Sebastian Noack 2016/03/30 12:06:37 Rather than adding yet another method here, I woul
+ {
+ chrome.storage.local.set(items, callback);
+ },
remove: function(key, callback)
{
chrome.storage.local.remove(key, callback);
« no previous file with comments | « no previous file | lib/io.js » ('j') | lib/io.js » ('J')

Powered by Google App Engine
This is Rietveld