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

Unified Diff: chrome/browser/media_gallery/mtp_device_delegate_impl.h

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: Addressed review comments Created 8 years, 2 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
Index: chrome/browser/media_gallery/mtp_device_delegate_impl.h
diff --git a/chrome/browser/media_gallery/mtp_device_delegate_impl.h b/chrome/browser/media_gallery/mtp_device_delegate_impl.h
index 5fffdfd2a98b991bf3f509aefd469ed28cd466d6..c752e8ab64f430e21c422902110d11307ccabc3b 100644
--- a/chrome/browser/media_gallery/mtp_device_delegate_impl.h
+++ b/chrome/browser/media_gallery/mtp_device_delegate_impl.h
@@ -14,13 +14,17 @@
#if defined(OS_LINUX) // Implies OS_CHROMEOS
#include "chrome/browser/media_gallery/mtp_device_delegate_impl_linux.h"
+#elif defined(OS_WIN)
+#include "chrome/browser/media_gallery/win/mtp_device_delegate_impl_win.h"
#endif
namespace chrome {
-// TODO(kmadhusu): Implement mtp device delegates on other platforms.
+// TODO(kmadhusu): Implement MTP device delegates on other platforms.
#if defined(OS_LINUX) // Implies OS_CHROMEOS
typedef class MtpDeviceDelegateImplLinux MtpDeviceDelegateImpl;
+#elif defined(OS_WIN)
+typedef class MTPDeviceDelegateImplWin MtpDeviceDelegateImpl;
kmadhusu 2012/11/01 01:17:24 After committing this CL, I will rename MtpDeviceD
#endif
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698