Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / remoting / webapp / background.js
blob290b43a0ee6929c268999f22f9a4494d3c049d8f
1 // Copyright (c) 2012 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 chrome.app.runtime.onLaunched.addListener(function() {
6   chrome.app.window.create('main.html', {
7     'width': 800,
8     'height': 600
9   });
10 });