Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: chrome/browser/system_monitor/removable_device_constants.h

Issue 10918259: [Chrome OS]Implement MediaStorageUtil::GetDeviceInfoForPath function to support media gallery permi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win compile error Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
6 #define CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ 6 #define CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 namespace chrome { 10 namespace chrome {
11 11
12 // Prefix constants used in device unique id. 12 // Prefix constants used in device unique id.
13 extern const char kFSUniqueIdPrefix[]; 13 extern const char kFSUniqueIdPrefix[];
14 extern const char kVendorModelSerialPrefix[]; 14 extern const char kVendorModelSerialPrefix[];
15 15
16 #if defined(OS_CHROMEOS) 16 #if defined(OS_CHROMEOS)
17 // Delimiter constants used in device label to specify data storage id.
18 extern const char kLeftParen[];
19 extern const char kRightParen[];
20
17 extern const char kVendorModelVolumeStoragePrefix[]; 21 extern const char kVendorModelVolumeStoragePrefix[];
18 #endif 22 #endif
19 23
20 // Delimiter constants used in device label and unique id. 24 // Delimiter constants used in device label and unique id.
21 extern const char kNonSpaceDelim[]; 25 extern const char kNonSpaceDelim[];
22 extern const char kSpaceDelim[]; 26 extern const char kSpaceDelim[];
23 27
24 } // namespace chrome 28 } // namespace chrome
25 29
26 #endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ 30 #endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698