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

Side by Side Diff: chrome/browser/media_galleries/fileapi/picasa/pmp_constants.h

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Add android ifdef. Created 7 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_CONSTANTS_H_
6 #define WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_CONSTANTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 11
12 namespace picasaimport { 12 namespace picasaimport {
13 13
14 // PMP file format. 14 // PMP file format.
15 // Info derived from: http://sbktech.blogspot.com/2011/12/picasa-pmp-format.html 15 // Info derived from: http://sbktech.blogspot.com/2011/12/picasa-pmp-format.html
16 16
(...skipping 19 matching lines...) Expand all
36 PMP_TYPE_STRING = 0x00, 36 PMP_TYPE_STRING = 0x00,
37 PMP_TYPE_UINT32 = 0x01, 37 PMP_TYPE_UINT32 = 0x01,
38 PMP_TYPE_DOUBLE64 = 0x02, 38 PMP_TYPE_DOUBLE64 = 0x02,
39 PMP_TYPE_UINT8 = 0x03, 39 PMP_TYPE_UINT8 = 0x03,
40 PMP_TYPE_UINT64 = 0x04, 40 PMP_TYPE_UINT64 = 0x04,
41 PMP_TYPE_INVALID = 0xff 41 PMP_TYPE_INVALID = 0xff
42 }; 42 };
43 43
44 } // namespace picasaimport 44 } // namespace picasaimport
45 45
46 #endif // WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ 46 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698