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

Unified Diff: chrome/browser/system_monitor/removable_device_constants.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: 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/system_monitor/removable_device_constants.cc
diff --git a/chrome/browser/system_monitor/removable_device_constants.cc b/chrome/browser/system_monitor/removable_device_constants.cc
index df2083c95a42ed58a4a42270f5e955534b033eeb..1e268932b7bde9ce7b9a021930c4eecfeef1ed8e 100644
--- a/chrome/browser/system_monitor/removable_device_constants.cc
+++ b/chrome/browser/system_monitor/removable_device_constants.cc
@@ -15,6 +15,16 @@ const char kVendorModelVolumeStoragePrefix[] = "VendorModelVolumeStorage:";
#if defined(OS_WIN)
const char16 kWPDDevInterfaceGUID[] = L"{6ac27878-a6fa-4155-ba85-f98f491d4f33}";
+
+const char16 kbmpFormat[] = L".bmp";
Lei Zhang 2012/11/01 02:34:57 kBmpFormat, ditto below.
Peter Kasting 2012/11/01 04:17:37 kBMPFormat would be even better. But must you def
kmadhusu 2012/11/01 17:59:00 It is not required to define these symbols in this
kmadhusu 2012/11/01 17:59:00 Inlined the values directly in the function.
+const char16 kexifFormat[] = L".jpg";
+const char16 kgifFormat[] = L".gif";
+const char16 kjfifFormat[] = L".jfif";
+const char16 kjpegxrFormat[] = L".jxr";
+const char16 kjpxFormat[] = L".jpx";
+const char16 kjp2Format[] = L".jp2";
+const char16 kpictFormat[] = L".pic";
+const char16 kpngFormat[] = L".png";
#endif
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698