| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // TestVolumeMountWatcherWin implementation. | 5 // TestVolumeMountWatcherWin implementation. |
| 6 | 6 |
| 7 #include "chrome/browser/system_monitor/test_volume_mount_watcher_win.h" | 7 #include "chrome/browser/system_monitor/test_volume_mount_watcher_win.h" |
| 8 | 8 |
| 9 #include "base/bind.h" |
| 9 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 10 | 11 |
| 11 namespace chrome { | 12 namespace chrome { |
| 12 namespace test { | 13 namespace test { |
| 13 | 14 |
| 14 namespace { | 15 namespace { |
| 15 | 16 |
| 16 std::vector<FilePath> NoAttachedDevices() { | 17 std::vector<FilePath> NoAttachedDevices() { |
| 17 std::vector<FilePath> result; | 18 std::vector<FilePath> result; |
| 18 return result; | 19 return result; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 string16* device_location, | 126 string16* device_location, |
| 126 std::string* unique_id, | 127 std::string* unique_id, |
| 127 string16* name, | 128 string16* name, |
| 128 bool* removable) { | 129 bool* removable) { |
| 129 return GetMassStorageDeviceDetails( | 130 return GetMassStorageDeviceDetails( |
| 130 device_path, device_location, unique_id, name, removable); | 131 device_path, device_location, unique_id, name, removable); |
| 131 } | 132 } |
| 132 | 133 |
| 133 } // namespace test | 134 } // namespace test |
| 134 } // namespace chrome | 135 } // namespace chrome |
| OLD | NEW |