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) {
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)) {
22 chrome.test.succeed();