| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 REMOTING_HOST_CHROMOTING_MESSAGES_H_ | 5 #ifndef REMOTING_HOST_CHROMOTING_MESSAGES_H_ |
| 6 #define REMOTING_HOST_CHROMOTING_MESSAGES_H_ | 6 #define REMOTING_HOST_CHROMOTING_MESSAGES_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/memory/shared_memory_handle.h" | 10 #include "base/memory/shared_memory_handle.h" |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 | 244 |
| 245 // The array of bytes representing a security key request to be sent to the | 245 // The array of bytes representing a security key request to be sent to the |
| 246 // remote client. | 246 // remote client. |
| 247 IPC_MESSAGE_CONTROL1(ChromotingRemoteSecurityKeyToNetworkMsg_Request, | 247 IPC_MESSAGE_CONTROL1(ChromotingRemoteSecurityKeyToNetworkMsg_Request, |
| 248 std::string /* request bytes */) | 248 std::string /* request bytes */) |
| 249 | 249 |
| 250 //--------------------------------------------------------- | 250 //--------------------------------------------------------- |
| 251 // Chromoting messages sent from the network process to the remote_security_key | 251 // Chromoting messages sent from the network process to the remote_security_key |
| 252 // process. | 252 // process. |
| 253 | 253 |
| 254 // The array of bytes representing a security key response from the remote | 254 // The array of bytes representing the security key response from the client. |
| 255 // client. This message is sent over the per-client IPC channel. | |
| 256 IPC_MESSAGE_CONTROL1(ChromotingNetworkToRemoteSecurityKeyMsg_Response, | 255 IPC_MESSAGE_CONTROL1(ChromotingNetworkToRemoteSecurityKeyMsg_Response, |
| 257 std::string /* response bytes */) | 256 std::string /* response bytes */) |
| 257 |
| 258 // Indicates the channel used for security key message passing is ready for use. |
| 259 IPC_MESSAGE_CONTROL0(ChromotingNetworkToRemoteSecurityKeyMsg_ConnectionReady) |
| 260 |
| 261 // Error indicating the request originated from outside the remoted session. |
| 262 // The IPC channel will be disconnected after this message has been sent. |
| 263 IPC_MESSAGE_CONTROL0(ChromotingNetworkToRemoteSecurityKeyMsg_InvalidSession) |
| OLD | NEW |