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

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

Issue 11297002: [Media Gallery] Added code to support mtp device media file system on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments Created 8 years, 1 month 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 "base/string16.h" 8 #include "base/string16.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 namespace chrome { 11 namespace chrome {
12 12
13 // Prefix constants used in device unique id. 13 // Prefix constants used in device unique id.
14 extern const char kFSUniqueIdPrefix[]; 14 extern const char kFSUniqueIdPrefix[];
15 extern const char kVendorModelSerialPrefix[]; 15 extern const char kVendorModelSerialPrefix[];
16 16
17 #if defined(OS_LINUX) 17 #if defined(OS_LINUX)
18 extern const char kVendorModelVolumeStoragePrefix[]; 18 extern const char kVendorModelVolumeStoragePrefix[];
19 #endif 19 #endif
20 20
21 #if defined(OS_WIN) 21 #if defined(OS_WIN)
22 // Windows portable device interface GUID constant. 22 // Windows portable device interface GUID constant.
23 extern const char16 kWPDDevInterfaceGUID[]; 23 extern const char16 kWPDDevInterfaceGUID[];
24
25 // Media transfer protocol device object extensions.
26 extern const char16 kbmpFormat[];
27 extern const char16 kexifFormat[];
28 extern const char16 kgifFormat[];
29 extern const char16 kjfifFormat[];
30 extern const char16 kjpegxrFormat[];
31 extern const char16 kjp2Format[];
32 extern const char16 kjpxFormat[];
33 extern const char16 kpictFormat[];
34 extern const char16 kpngFormat[];
24 #endif 35 #endif
25 36
26 } // namespace chrome 37 } // namespace chrome
27 38
28 #endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_ 39 #endif // CHROME_BROWSER_SYSTEM_MONITOR_REMOVABLE_DEVICE_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698