• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
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 "base/strings/string16.h"
10 #include "build/build_config.h"
11 
12 namespace storage_monitor {
13 
14 // Prefix constants used in device unique id.
15 extern const char kFSUniqueIdPrefix[];
16 extern const char kVendorModelSerialPrefix[];
17 
18 #if defined(OS_LINUX)
19 extern const char kVendorModelVolumeStoragePrefix[];
20 #endif
21 
22 #if defined(OS_WIN)
23 // Windows portable device interface GUID constant.
24 extern const base::char16 kWPDDevInterfaceGUID[];
25 #endif
26 
27 extern const base::FilePath::CharType kDCIMDirectoryName[];
28 
29 }  // namespace storage_monitor
30 
31 #endif  // COMPONENTS_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
32