Index: content/browser/file_descriptor_info_impl.h |
diff --git a/content/browser/file_descriptor_info_impl.h b/content/browser/file_descriptor_info_impl.h |
index 40db959324458ec5597835ec58b8262c99ba8d41..0e25abfd7deef39bc2650e4760d99bf018adc14d 100644 |
--- a/content/browser/file_descriptor_info_impl.h |
+++ b/content/browser/file_descriptor_info_impl.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_ |
#define CONTENT_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_ |
+#include <vector> |
+ |
#include "base/memory/scoped_ptr.h" |
-#include "base/memory/scoped_vector.h" |
#include "content/common/content_export.h" |
#include "content/public/browser/file_descriptor_info.h" |
@@ -34,7 +35,7 @@ class FileDescriptorInfoImpl : public FileDescriptorInfo { |
void AddToMapping(int id, base::PlatformFile fd); |
bool HasID(int id) const; |
base::FileHandleMappingVector mapping_; |
- ScopedVector<base::ScopedFD> owned_descriptors_; |
+ std::vector<base::ScopedFD> owned_descriptors_; |
}; |
} |