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

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: diff against codereview.chromium.org/11088012 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..ada6c9cb6493b92842fdc263bb36f9ebebfbb830 100644
--- a/chrome/browser/media_gallery/mtp_device_delegate_impl.h
+++ b/chrome/browser/media_gallery/mtp_device_delegate_impl.h
@@ -14,6 +14,8 @@
#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/mtp_device_delegate_impl_win.h"
#endif
namespace chrome {
@@ -21,6 +23,8 @@ namespace chrome {
// 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;
#endif
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698