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

Unified Diff: ipc/handle_win.cc

Issue 1320783002: Make SharedMemoryHandle a class on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_global
Patch Set: Fix DCHECK. Created 5 years, 3 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: ipc/handle_win.cc
diff --git a/ipc/handle_win.cc b/ipc/handle_win.cc
index ea268bd3bdd2f9be1942a69266c1a7ab013eba85..61f6c8b113cba6145f693a2bf0c46074b1d7d455 100644
--- a/ipc/handle_win.cc
+++ b/ipc/handle_win.cc
@@ -11,6 +11,7 @@
namespace IPC {
+HandleWin::HandleWin() : handle_(nullptr), permissions_(INVALID) {}
HandleWin::HandleWin(const HANDLE& handle, Permissions permissions)
: handle_(handle), permissions_(permissions) {}

Powered by Google App Engine
This is Rietveld 408576698