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

Unified Diff: ipc/handle_win.cc

Issue 1281083004: ipc: Add the class HandleWin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add logging. Created 5 years, 4 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 | « ipc/handle_win.h ('k') | ipc/ipc.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/handle_win.cc
diff --git a/ipc/handle_win.cc b/ipc/handle_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ea268bd3bdd2f9be1942a69266c1a7ab013eba85
--- /dev/null
+++ b/ipc/handle_win.cc
@@ -0,0 +1,53 @@
+// 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.
+
+#include "ipc/handle_win.h"
+
+#include "base/logging.h"
+#include "base/memory/ref_counted.h"
+#include "base/strings/string_number_conversions.h"
+#include "ipc/handle_attachment_win.h"
+
+namespace IPC {
+
+HandleWin::HandleWin(const HANDLE& handle, Permissions permissions)
+ : handle_(handle), permissions_(permissions) {}
+
+// static
+void ParamTraits<HandleWin>::Write(Message* m, const param_type& p) {
+ scoped_refptr<IPC::internal::HandleAttachmentWin> attachment(
+ new IPC::internal::HandleAttachmentWin(p.get_handle(),
+ p.get_permissions()));
+ if (!m->WriteAttachment(attachment.Pass()))
+ NOTREACHED();
+}
+
+// static
+bool ParamTraits<HandleWin>::Read(const Message* m,
+ base::PickleIterator* iter,
+ param_type* r) {
+ scoped_refptr<MessageAttachment> attachment;
+ if (!m->ReadAttachment(iter, &attachment))
+ return false;
+ if (attachment->GetType() != MessageAttachment::TYPE_BROKERABLE_ATTACHMENT)
+ return false;
+ BrokerableAttachment* brokerable_attachment =
+ static_cast<BrokerableAttachment*>(attachment.get());
+ if (brokerable_attachment->GetBrokerableType() !=
+ BrokerableAttachment::WIN_HANDLE) {
+ return false;
+ }
+ IPC::internal::HandleAttachmentWin* handle_attachment =
+ static_cast<IPC::internal::HandleAttachmentWin*>(brokerable_attachment);
+ r->set_handle(handle_attachment->get_handle());
+ return true;
+}
+
+// static
+void ParamTraits<HandleWin>::Log(const param_type& p, std::string* l) {
+ l->append(base::StringPrintf("0x%X", p.get_handle()));
+ l->append(base::IntToString(p.get_permissions()));
+}
+
+} // namespace IPC
« no previous file with comments | « ipc/handle_win.h ('k') | ipc/ipc.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698