1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 var launchWindow = function() {
7 chrome
.app
.window
.create('main.html', {}, function (win
) {
9 chrome
.test
.sendMessage('LAUNCHED');
10 if (createCount
< 3) {
12 chrome
.test
.log('Attempt no #' + createCount
);
16 chrome
.test
.sendMessage('done-close-on-loadcommit');
21 chrome
.app
.runtime
.onLaunched
.addListener(function() {