Index: chrome/browser/system_monitor/removable_storage_notifications.h |
diff --git a/chrome/browser/system_monitor/removable_storage_notifications.h b/chrome/browser/system_monitor/removable_storage_notifications.h |
index e916dea83fdc0ed3f1fadb65729e269f983a5234..f89d9a322642f13789befbeff97e36cd1a10137e 100644 |
--- a/chrome/browser/system_monitor/removable_storage_notifications.h |
+++ b/chrome/browser/system_monitor/removable_storage_notifications.h |
@@ -18,6 +18,7 @@ namespace chrome { |
class MediaFileSystemRegistryTest; |
class RemovableStorageObserver; |
+class TransientDeviceIds; |
// Base class for platform-specific instances watching for removable storage |
// attachments/detachments. |
@@ -83,6 +84,8 @@ class RemovableStorageNotifications { |
void AddObserver(RemovableStorageObserver* obs); |
void RemoveObserver(RemovableStorageObserver* obs); |
+ uint64 GetTransientIdForDeviceId(const std::string& device_id); |
+ |
protected: |
RemovableStorageNotifications(); |
virtual ~RemovableStorageNotifications(); |
@@ -114,6 +117,8 @@ class RemovableStorageNotifications { |
// Map of all the attached removable storage devices. |
RemovableStorageMap storage_map_; |
+ |
+ scoped_ptr<TransientDeviceIds> transient_device_ids_; |
Lei Zhang
2013/02/12 16:48:01
Does this need to be a scoped_ptr?
vandebo (ex-Chrome)
2013/02/12 21:40:57
No, it's just a scoped_ptr to reduce the number of
|
}; |
} // namespace chrome |