Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / ui / file_manager / video_player / js / background.js
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 'use strict';
6
7
8 // Stores the app windows OLNY for test purpose.
9 // We SHOULD NOT use it as it is except for test, since the files which have
10 // the same name will be overridden each other.
11 var appWindowsForTest = {};
12
13 chrome.app.runtime.onLaunched.addListener(function(launchData) {
14   if (!launchData || !launchData.items || launchData.items.length == 0)
15     return;
16
17   var entry = launchData.items[0].entry;
18   entry.file(function(file) {
19     var url = window.URL.createObjectURL(file);
20     open(url, entry.name);
21   }.wrap(),
22   function() {
23     // TODO(yoshiki): handle error in a smarter way.
24     open('', 'error');  // Empty URL shows the error message.
25   }.wrap());
26 }.wrap());
27
28 function open(url, title) {
29   chrome.app.window.create('video_player.html', {
30     id: 'video',
31     singleton: false,
32     minWidth: 160,
33     minHeight: 100
34   },
35   function(createdWindow) {
36     // Stores the window for test purpose.
37     appWindowsForTest[title] = createdWindow;
38
39     createdWindow.setIcon('images/200/icon.png');
40     createdWindow.contentWindow.videoUrl = url;
41     createdWindow.contentWindow.videoTitle = title;
42   }.wrap());
43 }