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

Side by Side Diff: ext/popup.js

Issue 29458601: Issue 5315 - Add support for Microsoft Edge (Closed)
Patch Set: Future proof in case Edge supports OBJECT request interception Created June 28, 2017, 4:30 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ext/background.js ('k') | icons/abp-150.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 "use strict"; 1 "use strict";
2 2
3 (function() 3 (function()
4 { 4 {
5 if (!chrome || !chrome.extension)
6 window.chrome = browser;
5 const backgroundPage = chrome.extension.getBackgroundPage(); 7 const backgroundPage = chrome.extension.getBackgroundPage();
6 window.ext = Object.create(backgroundPage.ext); 8 window.ext = Object.create(backgroundPage.ext);
7 9
8 window.ext.closePopup = () => 10 window.ext.closePopup = () =>
9 { 11 {
10 window.close(); 12 window.close();
11 }; 13 };
12 14
13 // We have to override ext.backgroundPage, because in order 15 // We have to override ext.backgroundPage, because in order
14 // to send messages the local "chrome" namespace must be used. 16 // to send messages the local "chrome" namespace must be used.
15 window.ext.backgroundPage = { 17 window.ext.backgroundPage = {
16 sendMessage: chrome.runtime.sendMessage, 18 sendMessage: chrome.runtime.sendMessage,
17 19
18 getWindow() 20 getWindow()
19 { 21 {
20 return backgroundPage; 22 return backgroundPage;
21 } 23 }
22 }; 24 };
23 }()); 25 }());
OLDNEW
« no previous file with comments | « ext/background.js ('k') | icons/abp-150.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld