Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: chrome/test/data/extensions/samples/subscribe_page_action/background.html

Issue 126143: Converting the RSS subscription page to use a background page, as opposed to ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/data/extensions/samples/subscribe_page_action/manifest.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 <html> 1 <html>
2 <script> 2 <script>
3 // The Page Action ID. 3 // The Page Action ID.
4 var pageActionId = "RssPageAction"; 4 var pageActionId = "RssPageAction";
5 5
6 // The window this Page Action is associated with. 6 // The window this Page Action is associated with.
7 var windowId = -1; 7 var windowId = -1;
8 8
9 // The TabId this Page Action is associated with. 9 // The TabId this Page Action is associated with.
10 var tabId = -1; 10 var tabId = -1;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 var url = "http://www.google.com/reader/view/feed/" + feedUrl; 49 var url = "http://www.google.com/reader/view/feed/" + feedUrl;
50 chrome.tabs.create({url: "subscribe.html?" + feedUrl, 50 chrome.tabs.create({url: "subscribe.html?" + feedUrl,
51 windowId: windowId}); 51 windowId: windowId});
52 } 52 }
53 } 53 }
54 }); 54 });
55 }); 55 });
56 }); 56 });
57 </script> 57 </script>
58 </html> 58 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/extensions/samples/subscribe_page_action/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698