Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / file_system / save_background / background.js
blob9b6f2a01ceb586c3030ad17521d1f244b368697b
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 chrome.test.runTests([
6   function openFile() {
7     chrome.fileSystem.chooseEntry({type: 'saveFile'}, chrome.test.callbackFail(
8         "Invalid calling page. This function can't be called from a " +
9         "background page.", function(entry) {}));
10   }
11 ]);