Index: remoting/proto/event.proto |
diff --git a/remoting/proto/event.proto b/remoting/proto/event.proto |
index 2526d7845efff87565e81e76652c1da6cb22f6cb..1f14c9dc43437936a218df04bae9754aaa26a2cf 100644 |
--- a/remoting/proto/event.proto |
+++ b/remoting/proto/event.proto |
@@ -90,14 +90,7 @@ message Event { |
optional MouseEvent mouse = 4; |
} |
-// Defines the message that is sent from client to host. |
-// Only one of the optional messages should be present. |
-message ClientEventMessage { |
- repeated Event events = 1; |
-} |
- |
-// Defines the message that is sent from host to client. |
-// Only one of the optional messages should be present. |
-message HostEventMessage { |
- // TODO(hclam): Define the message. |
+// Message sent in the event channel. |
+message EventMessage { |
+ repeated Event event = 1; |
} |