blob: a34b5e93b23a66161776eeb74698a8dc7df5f1b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
#define CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
#include "build/build_config.h"
namespace chrome {
// Prefix constants used in device unique id.
extern const char kFSUniqueIdPrefix[];
extern const char kVendorModelSerialPrefix[];
#if defined(OS_CHROMEOS)
// Delimiter constants used in device label to specify data storage id.
extern const char kLeftParen[];
extern const char kRightParen[];
extern const char kVendorModelVolumeStoragePrefix[];
#endif
// Delimiter constants used in device label and unique id.
extern const char kNonSpaceDelim[];
extern const char kSpaceDelim[];
} // namespace chrome
#endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
|