removable_device_constants.cc 764 B

123456789101112131415161718192021222324
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "build/build_config.h"
  5. #include "components/storage_monitor/removable_device_constants.h"
  6. namespace storage_monitor {
  7. const char kFSUniqueIdPrefix[] = "UUID:";
  8. const char kVendorModelSerialPrefix[] = "VendorModelSerial:";
  9. #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
  10. const char kVendorModelVolumeStoragePrefix[] = "VendorModelVolumeStorage:";
  11. #endif
  12. #if BUILDFLAG(IS_WIN)
  13. const wchar_t kWPDDevInterfaceGUID[] =
  14. L"{6ac27878-a6fa-4155-ba85-f98f491d4f33}";
  15. #endif
  16. const base::FilePath::CharType kDCIMDirectoryName[] = FILE_PATH_LITERAL("DCIM");
  17. } // namespace storage_monitor