| Index: chrome/utility/safe_browsing/mac/udif.h
|
| diff --git a/chrome/utility/safe_browsing/mac/udif.h b/chrome/utility/safe_browsing/mac/udif.h
|
| index 2b330bec75df4c84035a8075ba4c60f0d990e0bd..fbb17c9280743e2611deba7d9955657f8e175413 100644
|
| --- a/chrome/utility/safe_browsing/mac/udif.h
|
| +++ b/chrome/utility/safe_browsing/mac/udif.h
|
| @@ -16,7 +16,6 @@
|
|
|
| #include "base/mac/scoped_cftyperef.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
|
|
| namespace safe_browsing {
|
| namespace dmg {
|
| @@ -77,7 +76,8 @@ class UDIFParser {
|
|
|
| ReadStream* const stream_; // The stream backing the UDIF image. Weak.
|
| std::vector<std::string> partition_names_; // The names of all partitions.
|
| - ScopedVector<const UDIFBlock> blocks_; // All blocks in the UDIF image.
|
| + // All blocks in the UDIF image.
|
| + std::vector<std::unique_ptr<const UDIFBlock>> blocks_;
|
| uint16_t block_size_; // The image's block size, in bytes.
|
|
|
| DISALLOW_COPY_AND_ASSIGN(UDIFParser);
|
|
|