| /* | |
| * Copyright (c) 2013 The Native Client Authors. All rights reserved. | |
| * Use of this source code is governed by a BSD-style license that can be | |
| * found in the LICENSE file. | |
| */ | |
| 'use strict'; | |
| chrome.app.runtime.onLaunched.addListener(function() { | |
| chrome.app.window.create('index.html', { | |
| 'id': 'main', | |
| 'bounds': { | |
| 'width': 800, | |
| 'height': 800 | |
| } | |
| }); | |
| }); |