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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « ipc/handle_attachment_win.cc ('k') | ipc/handle_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef IPC_HANDLE_WIN_H_
6 #define IPC_HANDLE_WIN_H_
7
8 #include <windows.h>
9
10 #include "ipc/ipc_export.h"
11 #include "ipc/ipc_message_macros.h"
12
13 namespace IPC {
14
15 // HandleWin is a wrapper around a Windows HANDLE that can be transported
16 // across Chrome IPC channels that support attachment brokering. The HANDLE will
17 // be duplicated into the destination process.
18 class IPC_EXPORT HandleWin {
19 public:
20 enum Permissions {
21 // A placeholder value to be used by the receiving IPC channel, since the
22 // permissions information is only used by the broker process.
23 INVALID,
24 // The new HANDLE will have the same permissions as the old HANDLE.
25 DUPLICATE,
26 // The new HANDLE will have file read and write permissions.
27 FILE_READ_WRITE,
28 MAX_PERMISSIONS = FILE_READ_WRITE
29 };
30
31 HandleWin(const HANDLE& handle, Permissions permissions);
32
33 HANDLE get_handle() const { return handle_; }
34 void set_handle(HANDLE handle) { handle_ = handle; }
35 Permissions get_permissions() const { return permissions_; }
36
37 private:
38 HANDLE handle_;
39 Permissions permissions_;
40 };
41
42 template <>
43 struct IPC_EXPORT ParamTraits<HandleWin> {
44 typedef HandleWin param_type;
45 static void Write(Message* m, const param_type& p);
46 static bool Read(const Message* m, base::PickleIterator* iter, param_type* p);
47 static void Log(const param_type& p, std::string* l);
48 };
49
50 } // namespace IPC
51
52 #endif // IPC_HANDLE_WIN_H_
OLDNEW
« 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