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

Unified Diff: chrome/browser/system_monitor/removable_storage_notifications_unittest.cc

Issue 11297002: [Media Gallery] Added code to support mtp device media file system on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + Fixed win compile error by implementing GetMTPStorageInfoFromDeviceId in TestStorageNotifi… Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/system_monitor/removable_storage_notifications.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
diff --git a/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc b/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
index 37809aa9b556bee260a65dda4c4ad7b60de9940b..fe7c3a5c68a859709642ecec6ce326b98d33746e 100644
--- a/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
+++ b/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
@@ -27,6 +27,15 @@ class TestStorageNotifications : public RemovableStorageNotifications {
return 0;
}
+#if defined(OS_WIN)
+ virtual bool GetMTPStorageInfoFromDeviceId(
+ const std::string& storage_device_id,
+ string16* device_location,
+ string16* storage_object_id) const OVERRIDE {
+ return false;
+ }
+#endif
+
void ProcessAttach(const std::string& id,
const string16& name,
const FilePath::StringType& location) {
« no previous file with comments | « chrome/browser/system_monitor/removable_storage_notifications.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698