| Index: content/child/ref_counted_shared_memory.h
|
| diff --git a/content/child/ref_counted_shared_memory.h b/content/child/ref_counted_shared_memory.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..37385a3b0117f8ced7774a3f4427d724b37bce24
|
| --- /dev/null
|
| +++ b/content/child/ref_counted_shared_memory.h
|
| @@ -0,0 +1,32 @@
|
| +// Copyright 2015 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_REF_COUNTED_SHARED_MEMORY_H_
|
| +#define CONTENT_REF_COUNTED_SHARED_MEMORY_H_
|
| +
|
| +#include "base/memory/ref_counted.h"
|
| +#include "base/memory/shared_memory.h"
|
| +
|
| +namespace content {
|
| +
|
| +class RefCountedSharedMemory final
|
| + : public base::RefCounted<RefCountedSharedMemory> {
|
| + public:
|
| + RefCountedSharedMemory(base::SharedMemoryHandle handle, bool read_only);
|
| +
|
| + base::SharedMemory& memory() { return memory_; }
|
| + const base::SharedMemory& memory() const { return memory_; }
|
| +
|
| + private:
|
| + friend class base::RefCounted<RefCountedSharedMemory>;
|
| + ~RefCountedSharedMemory();
|
| +
|
| + base::SharedMemory memory_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(RefCountedSharedMemory);
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // #ifndef CONTENT_REF_COUNTED_SHARED_MEMORY_H_
|
|
|