- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / image_writer_private / removable_storage_provider_win.cc
1 // Copyright 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.
4
5 #include "chrome/browser/extensions/api/image_writer_private/removable_storage_provider.h"
6
7 namespace extensions {
8
9 void RemovableStorageProvider::GetAllDevices(
10     DeviceListReadyCallback callback) {
11   scoped_refptr<StorageDeviceList> device_list(new StorageDeviceList());
12
13   callback.Run(device_list, false);
14 }
15
16 } // namespace extensions