Apply _RELATIVE relocations ahead of others.
[chromium-blink-merge.git] / content / browser / file_descriptor_info_impl.h
blob78d746e22d4942ff6e15a858f3b794e8250b2764
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_
6 #define CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/scoped_vector.h"
10 #include "content/common/content_export.h"
11 #include "content/public/browser/file_descriptor_info.h"
13 namespace content {
15 class FileDescriptorInfoImpl : public FileDescriptorInfo {
16 public:
17 CONTENT_EXPORT static scoped_ptr<FileDescriptorInfo> Create();
19 ~FileDescriptorInfoImpl() override;
20 void Share(int id, base::PlatformFile fd) override;
21 void Transfer(int id, base::ScopedFD fd) override;
22 const base::FileHandleMappingVector& GetMapping() const override;
23 base::FileHandleMappingVector GetMappingWithIDAdjustment(
24 int delta) const override;
25 base::PlatformFile GetFDAt(size_t i) const override;
26 int GetIDAt(size_t i) const override;
27 size_t GetMappingSize() const override;
29 private:
30 FileDescriptorInfoImpl();
32 void AddToMapping(int id, base::PlatformFile fd);
33 bool HasID(int id) const;
34 base::FileHandleMappingVector mapping_;
35 ScopedVector<base::ScopedFD> owned_descriptors_;
39 #endif // CONTENT_PUBLIC_BROWSER_FILE_DESCRIPTOR_INFO_IMPL_H_