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

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, 1 month 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 535d681a6c677aaccfb8b480119c41944d4dc3e9..574a27db3045474ce865d81fecf5ed39b3779e84 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/win/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