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

Unified Diff: ipc/handle_win.h

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_attachment_win.cc ('k') | ipc/handle_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/handle_win.h
diff --git a/ipc/handle_win.h b/ipc/handle_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..f5f0263272c4c06a858f6de6de6a9495b2af843c
--- /dev/null
+++ b/ipc/handle_win.h
@@ -0,0 +1,52 @@
+// 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.
+
+#ifndef IPC_HANDLE_WIN_H_
+#define IPC_HANDLE_WIN_H_
+
+#include <windows.h>
+
+#include "ipc/ipc_export.h"
+#include "ipc/ipc_message_macros.h"
+
+namespace IPC {
+
+// HandleWin is a wrapper around a Windows HANDLE that can be transported
+// across Chrome IPC channels that support attachment brokering. The HANDLE will
+// be duplicated into the destination process.
+class IPC_EXPORT HandleWin {
+ public:
+ enum Permissions {
+ // A placeholder value to be used by the receiving IPC channel, since the
+ // permissions information is only used by the broker process.
+ INVALID,
+ // The new HANDLE will have the same permissions as the old HANDLE.
+ DUPLICATE,
+ // The new HANDLE will have file read and write permissions.
+ FILE_READ_WRITE,
+ MAX_PERMISSIONS = FILE_READ_WRITE
+ };
+
+ HandleWin(const HANDLE& handle, Permissions permissions);
+
+ HANDLE get_handle() const { return handle_; }
+ void set_handle(HANDLE handle) { handle_ = handle; }
+ Permissions get_permissions() const { return permissions_; }
+
+ private:
+ HANDLE handle_;
+ Permissions permissions_;
+};
+
+template <>
+struct IPC_EXPORT ParamTraits<HandleWin> {
+ typedef HandleWin param_type;
+ static void Write(Message* m, const param_type& p);
+ static bool Read(const Message* m, base::PickleIterator* iter, param_type* p);
+ static void Log(const param_type& p, std::string* l);
+};
+
+} // namespace IPC
+
+#endif // IPC_HANDLE_WIN_H_
« no previous file with comments | « ipc/handle_attachment_win.cc ('k') | ipc/handle_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698