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

Side by Side Diff: chrome/test/data/extensions/platform_apps/ad_view/ad_network_loaded/main.js

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Rebasing Created 7 years, 9 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
OLDNEW
1 /** 1 /**
2 * Listens for the app launching then creates the window 2 * Listens for the app launching then creates the window
3 * 3 *
4 * @see http://developer.chrome.com/trunk/apps/app.runtime.html 4 * @see http://developer.chrome.com/trunk/apps/app.runtime.html
5 * @see http://developer.chrome.com/trunk/apps/app.window.html 5 * @see http://developer.chrome.com/trunk/apps/app.window.html
6 */ 6 */
7 chrome.app.runtime.onLaunched.addListener(function() { 7 chrome.app.runtime.onLaunched.addListener(function() {
8 chrome.app.window.create('main.html', 8 chrome.app.window.create('index.html',
9 {width: 480, height: 225}); 9 {top:0, left: 0, width: 900, height: 800});
10 }); 10 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698