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

Unified Diff: content/browser/file_descriptor_info_impl.h

Issue 585203002: Turn FileDescriptorInfo a collection class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing Created 6 years, 3 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
« no previous file with comments | « content/browser/child_process_launcher.cc ('k') | content/browser/file_descriptor_info_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..f35ae74aad2ce201a3e51dd74eeea44500c4a2d0
--- /dev/null
+++ b/content/browser/file_descriptor_info_impl.h
@@ -0,0 +1,39 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_
+#define CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_
+
+#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"
+
+namespace content {
+
+class FileDescriptorInfoImpl : public FileDescriptorInfo {
+ public:
+ CONTENT_EXPORT static scoped_ptr<FileDescriptorInfo> Create();
+
+ virtual ~FileDescriptorInfoImpl();
+ virtual void Share(int id, base::PlatformFile fd) OVERRIDE;
+ virtual void Transfer(int id, base::ScopedFD fd) OVERRIDE;
+ virtual const base::FileHandleMappingVector& GetMapping() const OVERRIDE;
+ virtual base::FileHandleMappingVector GetMappingWithIDAdjustment(
+ int delta) const OVERRIDE;
+ virtual base::PlatformFile GetFDAt(size_t i) const OVERRIDE;
+ virtual int GetIDAt(size_t i) const OVERRIDE;
+ virtual size_t GetMappingSize() const OVERRIDE;
+
+ private:
+ FileDescriptorInfoImpl();
+
+ void AddToMapping(int id, base::PlatformFile fd);
+ bool HasID(int id) const;
+ base::FileHandleMappingVector mapping_;
+ ScopedVector<base::ScopedFD> owned_descriptors_;
+};
+}
+
+#endif // CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_
« no previous file with comments | « content/browser/child_process_launcher.cc ('k') | content/browser/file_descriptor_info_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698