OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ | 5 #ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ |
6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ | 6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ |
7 | 7 |
8 #include <CoreFoundation/CoreFoundation.h> | 8 #include <CoreFoundation/CoreFoundation.h> |
| 9 #include <stddef.h> |
| 10 #include <stdint.h> |
9 | 11 |
10 #include <string> | 12 #include <string> |
11 #include <vector> | 13 #include <vector> |
12 | 14 |
13 #include <sys/types.h> | 15 #include <sys/types.h> |
14 | 16 |
15 #include "base/mac/scoped_cftyperef.h" | 17 #include "base/mac/scoped_cftyperef.h" |
16 #include "base/macros.h" | 18 #include "base/macros.h" |
17 #include "base/memory/scoped_ptr.h" | 19 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/scoped_vector.h" | 20 #include "base/memory/scoped_vector.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 ScopedVector<const UDIFBlock> blocks_; // All blocks in the UDIF image. | 87 ScopedVector<const UDIFBlock> blocks_; // All blocks in the UDIF image. |
86 uint16_t block_size_; // The image's block size, in bytes. | 88 uint16_t block_size_; // The image's block size, in bytes. |
87 | 89 |
88 DISALLOW_COPY_AND_ASSIGN(UDIFParser); | 90 DISALLOW_COPY_AND_ASSIGN(UDIFParser); |
89 }; | 91 }; |
90 | 92 |
91 } // namespace dmg | 93 } // namespace dmg |
92 } // namespace safe_browsing | 94 } // namespace safe_browsing |
93 | 95 |
94 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ | 96 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_UDIF_H_ |
OLD | NEW |