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

Side by Side Diff: chrome/utility/safe_browsing/mac/dmg_iterator.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_DMG_ITERATOR_H_ 5 #ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ITERATOR_H_
6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ITERATOR_H_ 6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ITERATOR_H_
7 7
8 #include <stddef.h>
9
8 #include "base/macros.h" 10 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/scoped_vector.h" 12 #include "base/memory/scoped_vector.h"
11 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
12 #include "chrome/utility/safe_browsing/mac/udif.h" 14 #include "chrome/utility/safe_browsing/mac/udif.h"
13 15
14 namespace safe_browsing { 16 namespace safe_browsing {
15 namespace dmg { 17 namespace dmg {
16 18
17 class HFSIterator; 19 class HFSIterator;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 size_t current_partition_; // The index in |partitions_| of the current one. 52 size_t current_partition_; // The index in |partitions_| of the current one.
51 scoped_ptr<HFSIterator> hfs_; // The HFSIterator for |current_partition_|. 53 scoped_ptr<HFSIterator> hfs_; // The HFSIterator for |current_partition_|.
52 54
53 DISALLOW_COPY_AND_ASSIGN(DMGIterator); 55 DISALLOW_COPY_AND_ASSIGN(DMGIterator);
54 }; 56 };
55 57
56 } // namespace dmg 58 } // namespace dmg
57 } // namespace safe_browsing 59 } // namespace safe_browsing
58 60
59 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ITERATOR_H_ 61 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ITERATOR_H_
OLDNEW
« no previous file with comments | « chrome/utility/safe_browsing/mac/dmg_analyzer.cc ('k') | chrome/utility/safe_browsing/mac/dmg_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698