#ifndef COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
#define COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
#include "base/files/file_path.h"
#include "build/build_config.h"
namespace storage_monitor {
extern const char kFSUniqueIdPrefix[];
extern const char kVendorModelSerialPrefix[];
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
extern const char kVendorModelVolumeStoragePrefix[];
#endif
#if BUILDFLAG(IS_WIN)
extern const wchar_t kWPDDevInterfaceGUID[];
#endif
extern const base::FilePath::CharType kDCIMDirectoryName[];
}
#endif