OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 'use strict'; | 5 'use strict'; |
6 | 6 |
7 // This hack prevents a bug on the cast extension. | 7 // This hack prevents a bug on the cast extension. |
8 // TODO(yoshiki): Remove this once the cast extension supports Chrome apps. | 8 // TODO(yoshiki): Remove this once the cast extension supports Chrome apps. |
9 // Although localStorage in Chrome app is not supported, but it's used in the | 9 // Although localStorage in Chrome app is not supported, but it's used in the |
10 // cast extension. This line prevents an exception on using localStorage. | 10 // cast extension. This line prevents an exception on using localStorage. |
11 window.__defineGetter__('localStorage', function() { return {}; }); | 11 window.__defineGetter__('localStorage', function() { return {}; }); |
12 | 12 |
13 /** | |
14 * @type {string} | |
15 * @const | |
16 */ | |
17 var CAST_COMMAND_LINE_FLAG = 'enable-video-player-chromecast-support'; | |
18 | |
19 // THIS IS A TEST APP. | 13 // THIS IS A TEST APP. |
20 // TODO(yoshiki): Fix this before launch. | 14 // TODO(yoshiki): Fix this before launch. |
21 var APPLICATION_ID = '214CC863'; | 15 var APPLICATION_ID = '214CC863'; |
22 | 16 |
23 util.addPageLoadHandler(function() { | 17 util.addPageLoadHandler(function() { |
24 chrome.commandLinePrivate.hasSwitch(CAST_COMMAND_LINE_FLAG, function(result) { | 18 initialize(); |
25 if (result) | |
26 initialize(); | |
27 }.wrap()); | |
28 }.wrap()); | 19 }.wrap()); |
29 | 20 |
30 /** | 21 /** |
31 * Starts initialization of cast-related feature. | 22 * Starts initialization of cast-related feature. |
32 */ | 23 */ |
33 function initialize() { | 24 function initialize() { |
34 CastExtensionDiscoverer.findInstalledExtension(function(foundId) { | 25 CastExtensionDiscoverer.findInstalledExtension(function(foundId) { |
35 if (foundId) | 26 if (foundId) |
36 loadCastAPI(initializeApi); | 27 loadCastAPI(initializeApi); |
37 else | 28 else |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 } | 130 } |
140 | 131 |
141 player.setCastList(receivers); | 132 player.setCastList(receivers); |
142 } else if (availability == chrome.cast.ReceiverAvailability.UNAVAILABLE) { | 133 } else if (availability == chrome.cast.ReceiverAvailability.UNAVAILABLE) { |
143 player.setCastList([]); | 134 player.setCastList([]); |
144 } else { | 135 } else { |
145 console.error('Unexpected response in onReceiver.', arguments); | 136 console.error('Unexpected response in onReceiver.', arguments); |
146 player.setCastList([]); | 137 player.setCastList([]); |
147 } | 138 } |
148 } | 139 } |
OLD | NEW |