blob: 106122ab1cc10aa2112c9b1b7c258bb6b41ed5ed [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/recovery_private/removable_storage_provider.h"
namespace extensions {
void RemovableStorageProvider::GetAllDevices(
DeviceListReadyCallback callback) {
scoped_refptr<StorageDeviceList> device_list(new StorageDeviceList());
callback.Run(device_list, false);
}
} // namespace extensions