| Index: chrome/utility/safe_browsing/mac/dmg_iterator.h
|
| diff --git a/chrome/utility/safe_browsing/mac/dmg_iterator.h b/chrome/utility/safe_browsing/mac/dmg_iterator.h
|
| index f4ebc0ce01c37eea89f1b6a70d467fb732dc7a0b..74f17b0680038ad5d4f69a2374f029211878e49b 100644
|
| --- a/chrome/utility/safe_browsing/mac/dmg_iterator.h
|
| +++ b/chrome/utility/safe_browsing/mac/dmg_iterator.h
|
| @@ -8,9 +8,9 @@
|
| #include <stddef.h>
|
|
|
| #include <memory>
|
| +#include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/strings/string16.h"
|
| #include "chrome/utility/safe_browsing/mac/udif.h"
|
|
|
| @@ -49,7 +49,8 @@ class DMGIterator {
|
|
|
| private:
|
| UDIFParser udif_; // The UDIF parser that accesses the partitions.
|
| - ScopedVector<ReadStream> partitions_; // Streams for all the HFS partitions.
|
| + // Streams for all the HFS partitions.
|
| + std::vector<std::unique_ptr<ReadStream>> partitions_;
|
| size_t current_partition_; // The index in |partitions_| of the current one.
|
| std::unique_ptr<HFSIterator>
|
| hfs_; // The HFSIterator for |current_partition_|.
|
|
|