OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ |
6 #define CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ | 6 #define CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 | 11 |
12 namespace chrome { | |
13 | |
14 // Prefix constants used in device unique id. | 12 // Prefix constants used in device unique id. |
15 extern const char kFSUniqueIdPrefix[]; | 13 extern const char kFSUniqueIdPrefix[]; |
16 extern const char kVendorModelSerialPrefix[]; | 14 extern const char kVendorModelSerialPrefix[]; |
17 | 15 |
18 #if defined(OS_LINUX) | 16 #if defined(OS_LINUX) |
19 extern const char kVendorModelVolumeStoragePrefix[]; | 17 extern const char kVendorModelVolumeStoragePrefix[]; |
20 #endif | 18 #endif |
21 | 19 |
22 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
23 // Windows portable device interface GUID constant. | 21 // Windows portable device interface GUID constant. |
24 extern const char16 kWPDDevInterfaceGUID[]; | 22 extern const char16 kWPDDevInterfaceGUID[]; |
25 #endif | 23 #endif |
26 | 24 |
27 extern const base::FilePath::CharType kDCIMDirectoryName[]; | 25 extern const base::FilePath::CharType kDCIMDirectoryName[]; |
28 | 26 |
29 } // namespace chrome | |
30 | |
31 #endif // CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ | 27 #endif // CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ |
OLD | NEW |