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

Unified Diff: base/memory/shared_memory_handle.h

Issue 2854833004: Use SharedMemoryHandle instead ScopedHandle as ivar for SharedMemory (Closed)
Patch Set: Rebase. Created 3 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
« no previous file with comments | « base/memory/shared_memory.h ('k') | base/memory/shared_memory_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/shared_memory_handle.h
diff --git a/base/memory/shared_memory_handle.h b/base/memory/shared_memory_handle.h
index d66c3c156180626ac4a9718fd1989b8012fd1b2f..57e67453872b745a0c6e118d5f21721882906a57 100644
--- a/base/memory/shared_memory_handle.h
+++ b/base/memory/shared_memory_handle.h
@@ -25,6 +25,8 @@
namespace base {
+class SharedMemory;
+
// SharedMemoryHandle is a platform specific type which represents
// the underlying OS handle to a shared memory segment.
class BASE_EXPORT SharedMemoryHandle {
@@ -100,8 +102,6 @@ class BASE_EXPORT SharedMemoryHandle {
// mapped memory.
bool MapAt(off_t offset, size_t bytes, void** memory, bool read_only);
#elif defined(OS_WIN)
- SharedMemoryHandle(HANDLE h);
-
HANDLE GetHandle() const;
#else
// This constructor is deprecated, as it fails to propagate the GUID, which
@@ -154,6 +154,10 @@ class BASE_EXPORT SharedMemoryHandle {
};
};
#elif defined(OS_WIN)
+ friend class SharedMemory;
Nico 2017/05/02 20:37:52 :-(
+ // Takes implicit ownership of |h|.
+ SharedMemoryHandle(HANDLE h);
+
HANDLE handle_;
// Whether passing this object as a parameter to an IPC message passes
« no previous file with comments | « base/memory/shared_memory.h ('k') | base/memory/shared_memory_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698