[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / storage_monitor / removable_device_constants.h
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
6 #define COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
7
8 #include "base/files/file_path.h"
9 #include "build/build_config.h"
10
11 namespace storage_monitor {
12
13 // Prefix constants used in device unique id.
14 extern const char kFSUniqueIdPrefix[];
15 extern const char kVendorModelSerialPrefix[];
16
17 #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
18 extern const char kVendorModelVolumeStoragePrefix[];
19 #endif
20
21 #if BUILDFLAG(IS_WIN)
22 // Windows portable device interface GUID constant.
23 extern const wchar_t kWPDDevInterfaceGUID[];
24 #endif
25
26 extern const base::FilePath::CharType kDCIMDirectoryName[];
27
28 }  // namespace storage_monitor
29
30 #endif  // COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_