OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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. |
| 4 |
| 5 /** @suppress {duplicate} */ |
| 6 var remoting = remoting || {}; |
| 7 |
| 8 (function(){ |
| 9 |
| 10 /** @return {boolean} */ |
| 11 function isAppsV2() { |
| 12 var manifest = chrome.runtime.getManifest(); |
| 13 if (manifest && manifest.app && manifest.app.background) { |
| 14 return true; |
| 15 } |
| 16 return false; |
| 17 } |
| 18 |
| 19 /** @param {remoting.AppLauncher} appLauncher */ |
| 20 function initializeAppV2(appLauncher) { |
| 21 /** @type {string} */ |
| 22 var kNewWindowId = 'new-window'; |
| 23 |
| 24 /** @param {OnClickData} info */ |
| 25 function onContextMenu(info) { |
| 26 if (info.menuItemId == kNewWindowId) { |
| 27 appLauncher.launch(); |
| 28 } |
| 29 } |
| 30 |
| 31 function initializeContextMenu() { |
| 32 chrome.contextMenus.create({ |
| 33 id: kNewWindowId, |
| 34 contexts: ['launcher'], |
| 35 title: chrome.i18n.getMessage(/*i18n-content*/'NEW_WINDOW') |
| 36 }); |
| 37 chrome.contextMenus.onClicked.addListener(onContextMenu); |
| 38 } |
| 39 |
| 40 initializeContextMenu(); |
| 41 chrome.app.runtime.onLaunched.addListener(appLauncher.launch); |
| 42 } |
| 43 |
| 44 function main() { |
| 45 /** @type {remoting.AppLauncher} */ |
| 46 var appLauncher = new remoting.V1AppLauncher(); |
| 47 if (isAppsV2()) { |
| 48 appLauncher = new remoting.V2AppLauncher(); |
| 49 initializeAppV2(appLauncher); |
| 50 } |
| 51 } |
| 52 |
| 53 main(); |
| 54 |
| 55 }()); |
OLD | NEW |