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

Delta Between Two Patch Sets: chrome/ext/background.js

Issue 5693109165883392: Issue 2040 - Replaced localStorage with chrome.storage.local (Closed)
Left Patch Set: Addressed comment Created March 16, 2015, 12:53 p.m.
Right Patch Set: Fixed typo in comment Created April 13, 2015, 10:30 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « background.js ('k') | lib/prefs.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 items[key] = value; 510 items[key] = value;
511 chrome.storage.local.set(items, callback); 511 chrome.storage.local.set(items, callback);
512 }, 512 },
513 remove: function(key, callback) 513 remove: function(key, callback)
514 { 514 {
515 chrome.storage.local.remove(key, callback); 515 chrome.storage.local.remove(key, callback);
516 }, 516 },
517 onChanged: chrome.storage.onChanged, 517 onChanged: chrome.storage.onChanged,
518 518
519 // Migrate localStorage to chrome.storage.local, 519 // Migrate localStorage to chrome.storage.local,
520 // ignoring unkown and inavlid preferences. 520 // ignoring unkown and invalid preferences.
521 migratePrefs: function(mapFunc) 521 migratePrefs: function(hooks)
522 { 522 {
523 var items = {}; 523 var items = {};
524 524
525 for (let key in localStorage) 525 for (let key in localStorage)
526 { 526 {
527 var item = mapFunc(key, localStorage[key]); 527 var item = hooks.map(key, localStorage[key]);
528 if (item) 528 if (item)
529 items[item.key] = item.value; 529 items[item.key] = item.value;
530 } 530 }
531 531
532 chrome.storage.local.set(items, function() { 532 chrome.storage.local.set(items, function() {
533 localStorage.clear(); 533 localStorage.clear();
534 hooks.done();
534 }); 535 });
535 } 536 }
536 }; 537 };
537 538
538 /* Options */ 539 /* Options */
539 540
540 ext.showOptions = function(callback) 541 ext.showOptions = function(callback)
541 { 542 {
542 chrome.windows.getLastFocused(function(win) 543 chrome.windows.getLastFocused(function(win)
543 { 544 {
(...skipping 19 matching lines...) Expand all
563 callback(new Page(tab)); 564 callback(new Page(tab));
564 } 565 }
565 else 566 else
566 { 567 {
567 ext.pages.open(optionsUrl, callback); 568 ext.pages.open(optionsUrl, callback);
568 } 569 }
569 }); 570 });
570 }); 571 });
571 }; 572 };
572 })(); 573 })();
LEFTRIGHT

Powered by Google App Engine
This is Rietveld