Fix build break
[chromium-blink-merge.git] / chrome / browser / storage_monitor / removable_device_constants.h
blob7d32c9b2ac09d1b225c4378c31f38740fda9e8e8
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
6 #define CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
8 #include "base/files/file_path.h"
9 #include "base/string16.h"
10 #include "build/build_config.h"
12 namespace chrome {
14 // Prefix constants used in device unique id.
15 extern const char kFSUniqueIdPrefix[];
16 extern const char kVendorModelSerialPrefix[];
18 #if defined(OS_LINUX)
19 extern const char kVendorModelVolumeStoragePrefix[];
20 #endif
22 #if defined(OS_WIN)
23 // Windows portable device interface GUID constant.
24 extern const char16 kWPDDevInterfaceGUID[];
25 #endif
27 extern const base::FilePath::CharType kDCIMDirectoryName[];
29 } // namespace chrome
31 #endif // CHROME_BROWSER_STORAGE_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_