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

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

Issue 29371763: Issue 4795 - Use modern JavaScript syntax (Closed)
Left Patch Set: Undo accidental whitespace change Created Jan. 16, 2017, 2:57 p.m.
Right Patch Set: Addressed some more feedback Created Jan. 18, 2017, 11:44 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 | « chrome/ext/devtools.js ('k') | composer.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 "use strict"; 1 "use strict";
2 2
3 { 3 {
4 let backgroundPage = chrome.extension.getBackgroundPage(); 4 const backgroundPage = chrome.extension.getBackgroundPage();
5 window.ext = Object.create(backgroundPage.ext); 5 var ext = Object.create(backgroundPage.ext);
6 6
7 ext.closePopup = () => 7 ext.closePopup = () =>
8 { 8 {
9 window.close(); 9 window.close();
10 }; 10 };
11 11
12 // We have to override ext.backgroundPage, because in order 12 // We have to override ext.backgroundPage, because in order
13 // to send messages the local "chrome" namespace must be used. 13 // to send messages the local "chrome" namespace must be used.
14 ext.backgroundPage = { 14 ext.backgroundPage = {
15 sendMessage: chrome.runtime.sendMessage, 15 sendMessage: chrome.runtime.sendMessage,
16 16
17 getWindow() { return backgroundPage; } 17 getWindow()
Sebastian Noack 2017/01/16 15:35:55 As pointed out in a different file, in the previou
kzar 2017/01/17 07:42:48 Whoops, another victim from switching to an inline
18 {
19 return backgroundPage;
20 }
18 }; 21 };
19 } 22 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld