Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / file_manager_browsertest / video_player / test_helper_on_ui_page.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  * Overrides fileManagerPrivate.getDownloadUrl
9  * @param {string} url
10  * @param {function(string)} callback
11  */
12 chrome.fileManagerPrivate.getDownloadUrl = function(url, callback) {
13   var dummyUrl = 'http://example.com/test.mp4?access_token=ACCESSTOKEN;
14   setTimeout(callback.bind(null, dummyUrl));
15 };