| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |