| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 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/system_monitor/test_removable_storage_notifications.h" |
| 6 |
| 7 namespace chrome { |
| 8 namespace test { |
| 9 |
| 10 TestRemovableStorageNotifications::TestRemovableStorageNotifications() |
| 11 : RemovableStorageNotifications() {} |
| 12 |
| 13 TestRemovableStorageNotifications::~TestRemovableStorageNotifications() {} |
| 14 |
| 15 bool TestRemovableStorageNotifications::GetDeviceInfoForPath( |
| 16 const FilePath& path, |
| 17 StorageInfo* device_info) const { |
| 18 return false; |
| 19 } |
| 20 |
| 21 uint64 TestRemovableStorageNotifications::GetStorageSize( |
| 22 const std::string& location) const { |
| 23 return 0; |
| 24 } |
| 25 |
| 26 #if defined(OS_WIN) |
| 27 bool TestRemovableStorageNotifications::GetMTPStorageInfoFromDeviceId( |
| 28 const std::string& storage_device_id, |
| 29 string16* device_location, |
| 30 string16* storage_object_id) const { |
| 31 return false; |
| 32 } |
| 33 #endif |
| 34 |
| 35 } // namespace test |
| 36 } // namespace chrome |
| OLD | NEW |