| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 14 #include "base/macros.h" |
| 14 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 15 #include "chromeos/dbus/cros_disks_client.h" | 16 #include "chromeos/dbus/cros_disks_client.h" |
| 16 #include "chromeos/disks/disk_mount_manager.h" | 17 #include "chromeos/disks/disk_mount_manager.h" |
| 17 | 18 |
| 18 namespace file_manager { | 19 namespace file_manager { |
| 19 | 20 |
| 20 class FakeDiskMountManager : public chromeos::disks::DiskMountManager { | 21 class FakeDiskMountManager : public chromeos::disks::DiskMountManager { |
| 21 public: | 22 public: |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 97 |
| 97 std::vector<MountRequest> mount_requests_; | 98 std::vector<MountRequest> mount_requests_; |
| 98 std::vector<UnmountRequest> unmount_requests_; | 99 std::vector<UnmountRequest> unmount_requests_; |
| 99 | 100 |
| 100 DISALLOW_COPY_AND_ASSIGN(FakeDiskMountManager); | 101 DISALLOW_COPY_AND_ASSIGN(FakeDiskMountManager); |
| 101 }; | 102 }; |
| 102 | 103 |
| 103 } // namespace file_manager | 104 } // namespace file_manager |
| 104 | 105 |
| 105 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ | 106 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ |
| OLD | NEW |