Fix gn check errors for cc/blink
[chromium-blink-merge.git] / ipc / handle_attachment_win.h
blob7dd898ad54be0f3440732f2038c425b11fd3424c
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.
5 #ifndef IPC_HANDLE_ATTACHMENT_WIN_H_
6 #define IPC_HANDLE_ATTACHMENT_WIN_H_
8 #include <stdint.h>
10 #include "base/process/process_handle.h"
11 #include "ipc/brokerable_attachment.h"
12 #include "ipc/ipc_export.h"
14 namespace IPC {
15 namespace internal {
17 // This class represents a Windows HANDLE attached to a Chrome IPC message.
18 class IPC_EXPORT HandleAttachmentWin : public BrokerableAttachment {
19 public:
20 // The wire format for this handle.
21 struct IPC_EXPORT WireFormat {
22 // The HANDLE that is intended for duplication, or the HANDLE that has been
23 // duplicated, depending on context.
24 // The type is int32_t instead of HANDLE because HANDLE gets typedefed to
25 // void*, whose size varies between 32 and 64-bit processes. Using a
26 // int32_t means that 64-bit processes will need to perform both up-casting
27 // and down-casting. This is performed using the appropriate Windows apis.
28 int32_t handle;
29 // The id of the destination process that the handle is duplicated into.
30 base::ProcessId destination_process;
31 AttachmentId attachment_id;
34 HandleAttachmentWin(const HANDLE& handle);
36 BrokerableType GetBrokerableType() const override;
38 // Returns the wire format of this attachment.
39 WireFormat GetWireFormat(const base::ProcessId& destination) const;
41 private:
42 ~HandleAttachmentWin() override;
43 HANDLE handle_;
46 } // namespace internal
47 } // namespace IPC
49 #endif // IPC_HANDLE_ATTACHMENT_WIN_H_