blob: d6fb185da9b32e62e591c6f047f1725be1d1f49d [file] [log] [blame]
/*
* 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
}
});
});