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: Remove the trailing comma. Created April 1, 2016, 1:14 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
@@ -542,10 +542,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