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

Delta Between Two Patch Sets: ext/background.js

Issue 29527877: Issue 5582 - Workaround Edge bug in tabs.query (Closed)
Left Patch Set: Created Aug. 25, 2017, 10:55 p.m.
Right Patch Set: Update the comment about Firefox on Android Created Aug. 29, 2017, 4:02 p.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 | « no previous file | no next file » | 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-present eyeo GmbH 3 * Copyright (C) 2006-present 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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 { 692 {
693 chrome.storage.local.remove(key, callback); 693 chrome.storage.local.remove(key, callback);
694 }, 694 },
695 onChanged: chrome.storage.onChanged 695 onChanged: chrome.storage.onChanged
696 }; 696 };
697 697
698 /* Options */ 698 /* Options */
699 699
700 ext.showOptions = callback => 700 ext.showOptions = callback =>
701 { 701 {
702 let info = require("info");
703
702 if ("openOptionsPage" in chrome.runtime && 704 if ("openOptionsPage" in chrome.runtime &&
703 // Firefox for Android does have a runtime.openOptionsPage but it 705 // Some versions of Firefox for Android before version 57 do have a
704 // doesn't do anything. 706 // runtime.openOptionsPage but it doesn't do anything.
705 // https://bugzilla.mozilla.org/show_bug.cgi?id=1364945 707 // https://bugzilla.mozilla.org/show_bug.cgi?id=1364945
706 require("info").application != "fennec") 708 (info.application != "fennec" ||
709 parseInt(info.applicationVersion, 10) >= 57))
707 { 710 {
708 if (!callback) 711 if (!callback)
709 { 712 {
710 chrome.runtime.openOptionsPage(); 713 chrome.runtime.openOptionsPage();
711 } 714 }
712 else 715 else
713 { 716 {
714 chrome.runtime.openOptionsPage(() => 717 chrome.runtime.openOptionsPage(() =>
715 { 718 {
716 if (chrome.runtime.lastError) 719 if (chrome.runtime.lastError)
717 return; 720 return;
718 721
719 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs => 722 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs =>
720 { 723 {
721 if (tabs.length > 0) 724 if (tabs.length > 0)
722 { 725 {
723 if (tabs[0].status == "complete") 726 if (tabs[0].status == "complete")
724 callback(new Page(tabs[0])); 727 callback(new Page(tabs[0]));
725 else 728 else
726 afterTabLoaded(callback)(tabs[0]); 729 afterTabLoaded(callback)(tabs[0]);
727 } 730 }
728 }); 731 });
729 }); 732 });
730 } 733 }
731 } 734 }
732 else 735 else if ("windows" in chrome)
733 { 736 {
734 // Edge does not yet support runtime.openOptionsPage (tested version 38) 737 // Edge does not yet support runtime.openOptionsPage (tested version 38)
735 // nor does Firefox for Android,
736 // and so this workaround needs to stay for now. 738 // and so this workaround needs to stay for now.
737 // We are not using extension.getURL to get the absolute path here 739 // We are not using extension.getURL to get the absolute path here
738 // because of the Edge issue: 740 // because of the Edge issue:
739 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10 276332/ 741 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10 276332/
740 let open = win => 742 let optionsUrl = "options.html";
741 { 743 let fullOptionsUrl = ext.getURL(optionsUrl);
742 let optionsUrl = "options.html"; 744
743 let queryInfo = {title: "Adblock Plus Options"}; 745 chrome.tabs.query({}, tabs =>
Oleksandr 2017/08/25 22:59:31 This is somewhat questionable, of course. It is po
Sebastian Noack 2017/08/26 06:41:10 The title indeed doesn't seem to be translated, bu
744 746 {
745 if (win) 747 // We find a tab ourselves because Edge has a bug when quering tabs
746 queryInfo.windowId = win.id; 748 // with extension URL protocol:
747 749 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/ 8094141/
748 chrome.tabs.query(queryInfo, tabs => 750 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/ 8604703/
749 { 751 let tab = tabs.find(element => element.url == fullOptionsUrl);
750 if (tabs && tabs.length > 0) 752 if (tab)
751 { 753 {
752 let tab = tabs[0]; 754 chrome.windows.update(tab.windowId, {focused: true});
753 755 chrome.tabs.update(tab.id, {active: true});
754 if ("windows" in chrome) 756
755 chrome.windows.update(tab.windowId, {focused: true}); 757 if (callback)
756 758 callback(new Page(tab));
757 chrome.tabs.update(tab.id, {active: true}); 759 }
758 760 else
759 if (callback) 761 {
760 callback(new Page(tab)); 762 ext.pages.open(optionsUrl, callback);
761 } 763 }
762 else 764 });
763 { 765 }
764 ext.pages.open(optionsUrl, callback); 766 else
765 } 767 {
766 }); 768 // Firefox for Android before version 57 does not support
767 }; 769 // runtime.openOptionsPage, nor does it support the windows API. Since
768 770 // there is effectively only one window on the mobile browser, there's no
769 if ("windows" in chrome) 771 // need to bring it into focus.
770 { 772 ext.pages.open("options.html", callback);
771 chrome.windows.getLastFocused(open);
772 }
773 else
774 {
775 // Firefox for Android does not support the windows API. Since there is
776 // effectively only one window on the mobile browser, there's no need
777 // to bring it into focus.
778 open();
779 }
780 } 773 }
781 }; 774 };
782 775
783 /* Windows */ 776 /* Windows */
784 ext.windows = { 777 ext.windows = {
785 create(createData, callback) 778 create(createData, callback)
786 { 779 {
787 chrome.windows.create(createData, createdWindow => 780 chrome.windows.create(createData, createdWindow =>
788 { 781 {
789 afterTabLoaded(callback)(createdWindow.tabs[0]); 782 afterTabLoaded(callback)(createdWindow.tabs[0]);
790 }); 783 });
791 } 784 }
792 }; 785 };
793 }()); 786 }());
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld