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

Unified Diff: chrome/ext/background.js

Issue 29350042: Issue 4023 - Move storage of subscription lists to localStorage (Closed)
Patch Set: Make sure entry["compressed"] is truthful Created Sept. 8, 2016, 11:40 p.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') | no next file with comments »
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
@@ -572,10 +572,8 @@
{
chrome.storage.local.get(keys, callback);
},
- set: function(key, value, callback)
+ set: function(items, callback)
{
- let items = {};
- items[key] = value;
chrome.storage.local.set(items, callback);
},
remove: function(key, callback)
« no previous file with comments | « no previous file | lib/io.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld