Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / extensions / test / data / platform_app / background.js
1 // Copyright 2014 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.
4
5 // Stub for app_shell.
6 var createWindow =
7     chrome.shell ? chrome.shell.createWindow : chrome.app.window.create;
8 var onLaunched =
9     chrome.shell ? chrome.shell.onLaunched : chrome.app.runtime.onLaunched;
10
11 onLaunched.addListener(function() {
12   createWindow('hello.html', {
13     'innerBounds': {
14       'width': 400,
15       'height': 300
16     }
17   });
18 });