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

Side by Side Diff: chrome/utility/safe_browsing/mac/udif.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 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
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_
OLDNEW
« no previous file with comments | « chrome/utility/safe_browsing/mac/read_stream_unittest.cc ('k') | chrome/utility/safe_browsing/mac/udif.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698