1 // Copyright 2014 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 #ifndef COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_
6 #define COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_
10 #include "components/storage_monitor/storage_monitor.h"
12 namespace storage_monitor
{
14 class TestStorageMonitor
: public StorageMonitor
{
17 virtual ~TestStorageMonitor();
19 virtual void Init() OVERRIDE
;
21 void MarkInitialized();
23 // Create and initialize a new TestStorageMonitor and install it
24 // as the StorageMonitor singleton. If there is a StorageMonitor instance
25 // already in place, NULL is returned, otherwise the TestStorageMonitor
26 // instance is returned. Use |Destroy| to delete the singleton.
27 static TestStorageMonitor
* CreateAndInstall();
29 // Create and initialize a new TestStorageMonitor and install it
30 // as the StorageMonitor singleton. TestStorageMonitor is returned for
31 // convenience. Use |Destroy| to delete the singleton.
32 static TestStorageMonitor
* CreateForBrowserTests();
34 // Synchronously initialize the current storage monitor.
35 static void SyncInitialize();
37 virtual bool GetStorageInfoForPath(
38 const base::FilePath
& path
,
39 StorageInfo
* device_info
) const OVERRIDE
;
42 virtual bool GetMTPStorageInfoFromDeviceId(
43 const std::string
& storage_device_id
,
44 base::string16
* device_location
,
45 base::string16
* storage_object_id
) const OVERRIDE
;
49 virtual device::MediaTransferProtocolManager
*
50 media_transfer_protocol_manager() OVERRIDE
;
53 virtual Receiver
* receiver() const OVERRIDE
;
55 virtual void EjectDevice(
56 const std::string
& device_id
,
57 base::Callback
<void(StorageMonitor::EjectStatus
)> callback
)
60 const std::string
& ejected_device() const { return ejected_device_
; }
62 bool init_called() const { return init_called_
; }
65 // Whether TestStorageMonitor::Init() has been called for not.
68 // The last device to be ejected.
69 std::string ejected_device_
;
72 scoped_ptr
<device::MediaTransferProtocolManager
>
73 media_transfer_protocol_manager_
;
77 } // namespace storage_monitor
79 #endif // COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_