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

Unified Diff: content/browser/file_descriptor_info_impl.h

Issue 1508213002: Replace ScopedVector<ScopedFD> with std::vector<ScopedFD> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 5 years 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: 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_;
};
}

Powered by Google App Engine
This is Rietveld 408576698