blob: cf6a4f256468d7e68ed936642903eee3e9ef92d7 [file] [log] [blame]
// 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_