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

Side by Side Diff: chrome/ext/popup.js

Issue 5464830253203456: Refactored the abstraction layer to address prerendered pages on Safari caused by leaky abstraction (Closed)
Patch Set: Addressed comments Created April 11, 2014, 2:47 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 | « chrome/ext/content.js ('k') | ext/background.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 (function() 1 window.ext = {
2 { 2 __proto__: chrome.extension.getBackgroundPage().ext,
3 var backgroundPage = chrome.extension.getBackgroundPage(); 3
4 window.ext = { 4 closePopup: function()
5 __proto__: backgroundPage.ext, 5 {
6 closePopup: function() 6 window.close();
7 { 7 }
8 window.close(); 8 };
9 }
10 };
11 window.TabMap = backgroundPage.TabMap;
12 })();
OLDNEW
« no previous file with comments | « chrome/ext/content.js ('k') | ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld