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

Unified Diff: chrome/common/safe_browsing/mach_o_image_reader_mac.h

Issue 2802973003: Remove ScopedVector from chrome/ (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « no previous file | chrome/common/safe_browsing/mach_o_image_reader_mac.cc » ('j') | chrome/service/service_ipc_server.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698