Make sure webrtc::VideoSource is released when WebRtcVideoTrackAdapter is destroyed.
[chromium-blink-merge.git] / components / storage_monitor / test_storage_monitor.h
blob9b37304d9d460312967fd42cb2c79a4d4c8d20f8
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_
8 #include <string>
10 #include "components/storage_monitor/storage_monitor.h"
12 namespace storage_monitor {
14 class TestStorageMonitor : public StorageMonitor {
15 public:
16 TestStorageMonitor();
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;
41 #if defined(OS_WIN)
42 virtual bool GetMTPStorageInfoFromDeviceId(
43 const std::string& storage_device_id,
44 base::string16* device_location,
45 base::string16* storage_object_id) const OVERRIDE;
46 #endif
48 #if defined(OS_LINUX)
49 virtual device::MediaTransferProtocolManager*
50 media_transfer_protocol_manager() OVERRIDE;
51 #endif
53 virtual Receiver* receiver() const OVERRIDE;
55 virtual void EjectDevice(
56 const std::string& device_id,
57 base::Callback<void(StorageMonitor::EjectStatus)> callback)
58 OVERRIDE;
60 const std::string& ejected_device() const { return ejected_device_; }
62 bool init_called() const { return init_called_; }
64 private:
65 // Whether TestStorageMonitor::Init() has been called for not.
66 bool init_called_;
68 // The last device to be ejected.
69 std::string ejected_device_;
71 #if defined(OS_LINUX)
72 scoped_ptr<device::MediaTransferProtocolManager>
73 media_transfer_protocol_manager_;
74 #endif
77 } // namespace storage_monitor
79 #endif // COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_