Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / downloads / test.js
blobe10baea7158754fdad2951d8ee379eb85c5c256d
1 // Copyright (c) 2013 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 function contains_all(obj, keys) {
6   for (var i = 0; i < keys.length; ++i) {
7     if (!obj[keys[i]])
8       return false;
9   }
10   return true;
13 var contents = [
14   'download', 'search', 'pause', 'resume', 'cancel', 'getFileIcon', 'open',
15   'show', 'erase', 'acceptDanger', 'drag',
16   'onCreated', 'onChanged', 'onErased', 'onDeterminingFilename'];
18 if (!chrome.downloads ||
19     !contains_all(chrome.downloads, contents)) {
20   chrome.test.fail();
21 } else {
22   chrome.test.succeed();