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

Unified Diff: base/memory/shared_memory_handle_posix.cc

Issue 2846893003: Used a single class for SharedMemoryHandle. (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_handle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/shared_memory_handle_posix.cc
diff --git a/base/memory/shared_memory_handle_posix.cc b/base/memory/shared_memory_handle_posix.cc
index f11b35b1f8218437635047dba8a01e0dd9cca24e..3e9a403b14c23f8700cbf4105632c661edd6c6dc 100644
--- a/base/memory/shared_memory_handle_posix.cc
+++ b/base/memory/shared_memory_handle_posix.cc
@@ -12,6 +12,10 @@
namespace base {
SharedMemoryHandle::SharedMemoryHandle() = default;
+SharedMemoryHandle::SharedMemoryHandle(const SharedMemoryHandle& handle) =
+ default;
+SharedMemoryHandle& SharedMemoryHandle::operator=(
+ const SharedMemoryHandle& handle) = default;
SharedMemoryHandle::SharedMemoryHandle(
const base::FileDescriptor& file_descriptor)
« no previous file with comments | « base/memory/shared_memory_handle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698