| Index: remoting/proto/control.proto
|
| diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
|
| index 888c0b01b90108757fcbcf33d71554da7a39a749..2d2baf620b9b0892759dd2633da25f29f47c09a5 100644
|
| --- a/remoting/proto/control.proto
|
| +++ b/remoting/proto/control.proto
|
| @@ -66,3 +66,14 @@ message PairingResponse {
|
| // Shared secret for this client.
|
| optional string shared_secret = 2;
|
| }
|
| +
|
| +message ExtensionMessage {
|
| + // The message type. This is used to dispatch the message to the correct
|
| + // recipient.
|
| + optional string type = 1;
|
| +
|
| + // String-encoded message data. The client and host must agree on the encoding
|
| + // for each message type; different message types need not shared the same
|
| + // encoding.
|
| + optional string data = 2;
|
| +}
|
|
|