| OLD | NEW |
| 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 #ifndef IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ | 5 #ifndef IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ |
| 6 #define IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ | 6 #define IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ |
| 7 | 7 |
| 8 #include "ipc/attachment_broker.h" | 8 #include "ipc/attachment_broker.h" |
| 9 #include "ipc/ipc_export.h" | 9 #include "ipc/ipc_export.h" |
| 10 | 10 |
| 11 namespace IPC { | 11 namespace IPC { |
| 12 | 12 |
| 13 class Channel; | |
| 14 class Sender; | 13 class Sender; |
| 15 | 14 |
| 16 // This abstract subclass of AttachmentBroker is intended for use in | 15 // This abstract subclass of AttachmentBroker is intended for use in |
| 17 // non-privileged processes. | 16 // non-privileged processes. |
| 18 class IPC_EXPORT AttachmentBrokerUnprivileged : public IPC::AttachmentBroker { | 17 class IPC_EXPORT AttachmentBrokerUnprivileged : public IPC::AttachmentBroker { |
| 19 public: | 18 public: |
| 20 AttachmentBrokerUnprivileged(); | 19 AttachmentBrokerUnprivileged(); |
| 21 ~AttachmentBrokerUnprivileged() override; | 20 ~AttachmentBrokerUnprivileged() override; |
| 22 | 21 |
| 23 // In each unprivileged process, exactly one channel should be used to | 22 void set_sender(IPC::Sender* sender) { sender_ = sender; } |
| 24 // communicate brokerable attachments with the broker process. | |
| 25 void DesignateBrokerCommunicationChannel(IPC::Channel* channel); | |
| 26 | 23 |
| 27 protected: | 24 protected: |
| 28 IPC::Sender* get_sender() { return sender_; } | 25 IPC::Sender* get_sender() { return sender_; } |
| 29 | 26 |
| 30 private: | 27 private: |
| 31 // |sender_| is used to send Messages to the privileged broker process. | 28 // |sender_| is used to send Messages to the privileged broker process. |
| 32 // |sender_| must live at least as long as this instance. | 29 // |sender_| must live at least as long as this instance. |
| 33 IPC::Sender* sender_; | 30 IPC::Sender* sender_; |
| 34 DISALLOW_COPY_AND_ASSIGN(AttachmentBrokerUnprivileged); | 31 DISALLOW_COPY_AND_ASSIGN(AttachmentBrokerUnprivileged); |
| 35 }; | 32 }; |
| 36 | 33 |
| 37 } // namespace IPC | 34 } // namespace IPC |
| 38 | 35 |
| 39 #endif // IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ | 36 #endif // IPC_ATTACHMENT_BROKER_UNPRIVILEGED_H_ |
| OLD | NEW |