blob: 6c003897cbfa707daeb639719062b722ebbd4da9 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Protocol for control messages.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package remoting.protocol;
message ClientDimensions {
// Width and height of the client.
optional int32 width = 1;
optional int32 height = 2;
}
message VideoControl {
// Enables the video channel if true, pauses if false.
optional bool enable = 1;
}