Index: chrome/browser/system_monitor/removable_device_constants.h |
diff --git a/chrome/browser/system_monitor/removable_device_constants.h b/chrome/browser/system_monitor/removable_device_constants.h |
index 1b62c0532dcc9b42483c538dee61bbf2ff51e6c2..4ad45455bfdbb36e1b7fd08ef0b3e0f6b5059f84 100644 |
--- a/chrome/browser/system_monitor/removable_device_constants.h |
+++ b/chrome/browser/system_monitor/removable_device_constants.h |
@@ -6,6 +6,7 @@ |
#define CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ |
#include "build/build_config.h" |
+#include "base/string16.h" |
namespace chrome { |
@@ -13,17 +14,22 @@ namespace chrome { |
extern const char kFSUniqueIdPrefix[]; |
extern const char kVendorModelSerialPrefix[]; |
-#if defined(OS_LINUX) |
+// Delimiter constants used in device label and unique id. |
+extern const char kNonSpaceDelim[]; |
+extern const char kSpaceDelim[]; |
+ |
// Delimiter constants used in device label to specify data storage id. |
extern const char kLeftParen[]; |
extern const char kRightParen[]; |
Peter Kasting
2012/10/29 21:57:19
Just make sure you remember to remove these four c
kmadhusu
2012/10/30 01:29:24
Done. In this CL, I removed all instances of kLeft
|
+#if defined(OS_LINUX) |
extern const char kVendorModelVolumeStoragePrefix[]; |
#endif |
-// Delimiter constants used in device label and unique id. |
-extern const char kNonSpaceDelim[]; |
-extern const char kSpaceDelim[]; |
+#if defined(OS_WIN) |
+// Windows portable device interface GUID constant. |
+extern const char16 kWPDDevInterfaceGUID[]; |
+#endif |
} // namespace chrome |