1 // Copyright 2015 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.
5 function sendLaunchedAndRunReply() {
6 chrome
.test
.sendMessage('Launched', function (reply
) {
12 function createHidden() {
13 chrome
.app
.window
.create('empty.html', {
17 sendLaunchedAndRunReply();
21 function createVisible() {
22 chrome
.app
.window
.create('empty.html', {
25 sendLaunchedAndRunReply();
29 chrome
.app
.runtime
.onLaunched
.addListener(function() {
30 sendLaunchedAndRunReply();