summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/background.js
blob: 118b7e578809ff8f4d94bfaa87e7c015c82b4e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/** @type {string} */
var kNewWindowId = 'new-window';

function createWindow() {
  chrome.app.window.create('main.html', {
    'width': 800,
    'height': 600
  });
};

/** @param {OnClickData} info */
function onContextMenu(info) {
  if (info.menuItemId == kNewWindowId) {
    createWindow();
  }
};

function initializeContextMenu() {
  chrome.contextMenus.create({
     id: kNewWindowId,
     contexts: ['launcher'],
     title: chrome.i18n.getMessage(/*i18n-content*/'NEW_WINDOW')
  });
}

chrome.app.runtime.onLaunched.addListener(createWindow);
chrome.contextMenus.onClicked.addListener(onContextMenu);
initializeContextMenu();