summaryrefslogtreecommitdiffstats
path: root/components/storage_monitor/removable_device_constants.cc
blob: ce76b23e48bc71edf4b8b88abac22b0682d5230e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/storage_monitor/removable_device_constants.h"

namespace storage_monitor {

const char kFSUniqueIdPrefix[] = "UUID:";
const char kVendorModelSerialPrefix[] = "VendorModelSerial:";

#if defined(OS_LINUX)
const char kVendorModelVolumeStoragePrefix[] = "VendorModelVolumeStorage:";
#endif

#if defined(OS_WIN)
const base::char16 kWPDDevInterfaceGUID[] =
    L"{6ac27878-a6fa-4155-ba85-f98f491d4f33}";
#endif

const base::FilePath::CharType kDCIMDirectoryName[] = FILE_PATH_LITERAL("DCIM");

}  // namespace storage_monitor