LEFT | RIGHT |
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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 inavlid preferences. |
521 migratePrefs: function(prefs) | 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 value = localStorage[key]; | 527 var item = hooks.map(key, localStorage[key]); |
528 | 528 if (item) |
529 if (key in prefs) | 529 items[item.key] = item.value; |
530 { | |
531 try | |
532 { | |
533 items["pref:" + key] = JSON.parse(value); | |
534 } | |
535 catch (e) | |
536 { | |
537 } | |
538 } | |
539 else if (key == "currentVersion") | |
540 { | |
541 items[key] = value; | |
542 } | |
543 } | 530 } |
544 | 531 |
545 chrome.storage.local.set(items, function() { | 532 chrome.storage.local.set(items, function() { |
546 localStorage.clear(); | 533 localStorage.clear(); |
| 534 hooks.done(); |
547 }); | 535 }); |
548 }, | 536 }, |
549 | 537 |
550 // Migrate FileSystem API to chrome.storage.local. For simplicity | 538 // Migrate FileSystem API to chrome.storage.local. For simplicity |
551 // only patterns.ini is considered. Backups are left behind. | 539 // only patterns.ini is considered. Backups are left behind. |
552 migrateFiles: function(callback) | 540 migrateFiles: function(callback) |
553 { | 541 { |
554 if ("webkitRequestFileSystem" in window) | 542 if ("webkitRequestFileSystem" in window) |
555 { | 543 { |
556 webkitRequestFileSystem(PERSISTENT, 0, function(fs) | 544 webkitRequestFileSystem(PERSISTENT, 0, function(fs) |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 callback(new Page(tab)); | 613 callback(new Page(tab)); |
626 } | 614 } |
627 else | 615 else |
628 { | 616 { |
629 ext.pages.open(optionsUrl, callback); | 617 ext.pages.open(optionsUrl, callback); |
630 } | 618 } |
631 }); | 619 }); |
632 }); | 620 }); |
633 }; | 621 }; |
634 })(); | 622 })(); |
LEFT | RIGHT |