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

Unified Diff: content/child/ref_counted_shared_memory.h

Issue 1103813002: Make WebURLLoader capable of retaining received buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
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_

Powered by Google App Engine
This is Rietveld 408576698