Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: chrome/browser/chromeos/cros/mount_library.h

Issue 7457001: Adding support for mount point different from removable devices to MountLibrary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CROS_MOUNT_LIBRARY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_ 6 #define CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map>
9 #include <string> 10 #include <string>
10 #include <map>
11 11
12 #include "base/memory/singleton.h" 12 #include "base/memory/singleton.h"
13 #include "base/observer_list.h" 13 #include "base/observer_list.h"
14 #include "base/time.h" 14 #include "base/time.h"
15 #include "third_party/cros/chromeos_mount.h" 15 #include "third_party/cros/chromeos_mount.h"
16 16
17 namespace chromeos { 17 namespace chromeos {
18 18
19 typedef enum MountLibraryEventType { 19 typedef enum MountLibraryEventType {
20 MOUNT_DISK_ADDED, 20 MOUNT_DISK_ADDED,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 std::string parent_path_; 90 std::string parent_path_;
91 DeviceType device_type_; 91 DeviceType device_type_;
92 uint64 total_size_; 92 uint64 total_size_;
93 bool is_parent_; 93 bool is_parent_;
94 bool is_read_only_; 94 bool is_read_only_;
95 bool has_media_; 95 bool has_media_;
96 bool on_boot_device_; 96 bool on_boot_device_;
97 }; 97 };
98 typedef std::map<std::string, Disk*> DiskMap; 98 typedef std::map<std::string, Disk*> DiskMap;
99 99
100 // MountPointInfo: {source_path, mount_type}.
101 typedef std::pair<std::string, MountType> MountPointInfo;
102 // MountPointMap key is mount_path.
103 typedef std::map<std::string, MountPointInfo> MountPointMap;
104
100 typedef void(*UnmountDeviceRecursiveCallbackType)(void*, bool); 105 typedef void(*UnmountDeviceRecursiveCallbackType)(void*, bool);
101 106
102 class Observer { 107 class Observer {
103 public: 108 public:
104 virtual ~Observer() {} 109 virtual ~Observer() {}
105 // Async API events. 110 // Async API events.
106 virtual void DiskChanged(MountLibraryEventType event, 111 virtual void DiskChanged(MountLibraryEventType event,
107 const Disk* disk) = 0; 112 const Disk* disk) = 0;
108 virtual void DeviceChanged(MountLibraryEventType event, 113 virtual void DeviceChanged(MountLibraryEventType event,
109 const std::string& device_path ) = 0; 114 const std::string& device_path ) = 0;
115 virtual void MountCompleted(MountError error_code,
116 const std::string& source,
117 MountType mount_type,
118 const std::string& mount_path) = 0;
110 }; 119 };
111 120
112 virtual ~MountLibrary() {} 121 virtual ~MountLibrary() {}
113 virtual void AddObserver(Observer* observer) = 0; 122 virtual void AddObserver(Observer* observer) = 0;
114 virtual void RemoveObserver(Observer* observer) = 0; 123 virtual void RemoveObserver(Observer* observer) = 0;
115 virtual const DiskMap& disks() const = 0; 124 virtual const DiskMap& disks() const = 0;
125 virtual const MountPointMap& mount_points() const = 0;
116 126
117 virtual void RequestMountInfoRefresh() = 0; 127 virtual void RequestMountInfoRefresh() = 0;
118 virtual void MountPath(const char* device_path) = 0; 128 virtual void MountPath(const char* source_path,
119 virtual void UnmountPath(const char* device_path) = 0; 129 MountType type,
130 const MountPathOptions& options) = 0;
131 // |path| may be source od mount path.
132 virtual void UnmountPath(const char* path) = 0;
120 133
121 // Unmounts device_poath and all of its known children. 134 // Unmounts device_poath and all of its known children.
122 virtual void UnmountDeviceRecursive(const char* device_path, 135 virtual void UnmountDeviceRecursive(const char* device_path,
123 UnmountDeviceRecursiveCallbackType callback, void* user_data) = 0; 136 UnmountDeviceRecursiveCallbackType callback, void* user_data) = 0;
124 137
125 // Factory function, creates a new instance and returns ownership. 138 // Factory function, creates a new instance and returns ownership.
126 // For normal usage, access the singleton via CrosLibrary::Get(). 139 // For normal usage, access the singleton via CrosLibrary::Get().
127 static MountLibrary* GetImpl(bool stub); 140 static MountLibrary* GetImpl(bool stub);
128 }; 141 };
129 142
130 } // namespace chromeos 143 } // namespace chromeos
131 144
132 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_ 145 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698