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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ipc/handle_win.h" 5 #include "ipc/handle_win.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "ipc/handle_attachment_win.h" 10 #include "ipc/handle_attachment_win.h"
11 11
12 namespace IPC { 12 namespace IPC {
13 13
14 HandleWin::HandleWin() : handle_(nullptr), permissions_(INVALID) {}
14 HandleWin::HandleWin(const HANDLE& handle, Permissions permissions) 15 HandleWin::HandleWin(const HANDLE& handle, Permissions permissions)
15 : handle_(handle), permissions_(permissions) {} 16 : handle_(handle), permissions_(permissions) {}
16 17
17 // static 18 // static
18 void ParamTraits<HandleWin>::Write(Message* m, const param_type& p) { 19 void ParamTraits<HandleWin>::Write(Message* m, const param_type& p) {
19 scoped_refptr<IPC::internal::HandleAttachmentWin> attachment( 20 scoped_refptr<IPC::internal::HandleAttachmentWin> attachment(
20 new IPC::internal::HandleAttachmentWin(p.get_handle(), 21 new IPC::internal::HandleAttachmentWin(p.get_handle(),
21 p.get_permissions())); 22 p.get_permissions()));
22 if (!m->WriteAttachment(attachment.Pass())) 23 if (!m->WriteAttachment(attachment.Pass()))
23 NOTREACHED(); 24 NOTREACHED();
(...skipping 20 matching lines...) Expand all
44 return true; 45 return true;
45 } 46 }
46 47
47 // static 48 // static
48 void ParamTraits<HandleWin>::Log(const param_type& p, std::string* l) { 49 void ParamTraits<HandleWin>::Log(const param_type& p, std::string* l) {
49 l->append(base::StringPrintf("0x%X", p.get_handle())); 50 l->append(base::StringPrintf("0x%X", p.get_handle()));
50 l->append(base::IntToString(p.get_permissions())); 51 l->append(base::IntToString(p.get_permissions()));
51 } 52 }
52 53
53 } // namespace IPC 54 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698