| Index: chrome/common/safe_browsing/mach_o_image_reader_mac.h
|
| diff --git a/chrome/common/safe_browsing/mach_o_image_reader_mac.h b/chrome/common/safe_browsing/mach_o_image_reader_mac.h
|
| index 09411e4a99cad2ba1976bdd2085996ea9cc58616..5f93e6285fb4c68c5a6242d9db13dd1f5ff8e4d4 100644
|
| --- a/chrome/common/safe_browsing/mach_o_image_reader_mac.h
|
| +++ b/chrome/common/safe_browsing/mach_o_image_reader_mac.h
|
| @@ -14,7 +14,6 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
|
|
| namespace safe_browsing {
|
|
|
| @@ -95,7 +94,7 @@ class MachOImageReader {
|
| std::unique_ptr<ByteSlice> data_;
|
|
|
| bool is_fat_;
|
| - ScopedVector<MachOImageReader> fat_images_;
|
| + std::vector<std::unique_ptr<MachOImageReader>> fat_images_;
|
|
|
| bool is_64_bit_;
|
| std::vector<LoadCommand> commands_;
|
|
|