| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/system_monitor/removable_device_constants.h" | 5 #include "chrome/browser/system_monitor/removable_device_constants.h" |
| 6 | 6 |
| 7 namespace chrome { | 7 namespace chrome { |
| 8 | 8 |
| 9 const char kFSUniqueIdPrefix[] = "UUID:"; | 9 const char kFSUniqueIdPrefix[] = "UUID:"; |
| 10 const char kVendorModelSerialPrefix[] = "VendorModelSerial:"; | 10 const char kVendorModelSerialPrefix[] = "VendorModelSerial:"; |
| 11 | 11 |
| 12 const char kNonSpaceDelim[] = ":"; |
| 13 const char kSpaceDelim[] = " "; |
| 14 |
| 12 #if defined(OS_LINUX) | 15 #if defined(OS_LINUX) |
| 13 const char kLeftParen[] = "("; | 16 const char kLeftParen[] = "("; |
| 14 const char kRightParen[] = ")"; | 17 const char kRightParen[] = ")"; |
| 15 const char kVendorModelVolumeStoragePrefix[] = "VendorModelVolumeStorage:"; | 18 const char kVendorModelVolumeStoragePrefix[] = "VendorModelVolumeStorage:"; |
| 16 #endif | 19 #endif |
| 17 | 20 |
| 18 const char kNonSpaceDelim[] = ":"; | 21 #if defined(OS_WIN) |
| 19 const char kSpaceDelim[] = " "; | 22 const char16 kMtpDeviceStorageIdPrefix[] = L"StorageSerial:"; |
| 23 #endif |
| 20 | 24 |
| 21 } // namespace chrome | 25 } // namespace chrome |
| OLD | NEW |