#include "chrome/browser/extensions/api/image_writer_private/removable_storage_provider.h"
#include "base/functional/bind.h"
#include "base/lazy_instance.h"
#include "base/task/single_thread_task_runner.h"
#include "base/task/thread_pool.h"
#include "content/public/browser/browser_thread.h"
namespace extensions {
static base::LazyInstance<scoped_refptr<StorageDeviceList>>::DestructorAtExit
g_test_device_list = …;
void RemovableStorageProvider::GetAllDevices(DeviceListReadyCallback callback) { … }
void RemovableStorageProvider::SetDeviceListForTesting(
scoped_refptr<StorageDeviceList> device_list) { … }
void RemovableStorageProvider::ClearDeviceListForTesting() { … }
}