Fix the //sandbox/mac build when using a modern (10.7+) SDK.
[chromium-blink-merge.git] / remoting / webapp / background.js
blob1976b91bbd1a7c9efac643f6d5e87a9e4def07bb
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 /** @type {string} */
6 var kNewWindowId = 'new-window';
8 function createWindow() {
9   chrome.app.window.create('main.html', {
10     'width': 800,
11     'height': 600,
12     'frame': 'none'
13   });
16 /** @param {OnClickData} info */
17 function onContextMenu(info) {
18   if (info.menuItemId == kNewWindowId) {
19     createWindow();
20   }
23 function initializeContextMenu() {
24   chrome.contextMenus.create({
25      id: kNewWindowId,
26      contexts: ['launcher'],
27      title: chrome.i18n.getMessage(/*i18n-content*/'NEW_WINDOW')
28   });
31 chrome.app.runtime.onLaunched.addListener(createWindow);
32 chrome.contextMenus.onClicked.addListener(onContextMenu);
33 initializeContextMenu();