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