Index: blimp/common/proto/size.proto |
diff --git a/blimp/common/proto/common.proto b/blimp/common/proto/size.proto |
similarity index 57% |
rename from blimp/common/proto/common.proto |
rename to blimp/common/proto/size.proto |
index 578c02b63b78d3b0e09bedfc4582d517d2c263cb..f6ba801495df51dbe000a44b4369861105d1ba3d 100644 |
--- a/blimp/common/proto/common.proto |
+++ b/blimp/common/proto/size.proto |
@@ -1,8 +1,6 @@ |
// Copyright 2015 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. |
-// |
-// Common message types for sharing across Blimp subprotocols. |
syntax = "proto2"; |
@@ -10,8 +8,10 @@ option optimize_for = LITE_RUNTIME; |
package blimp; |
-message CoordinatePair { |
- optional sint32 x = 1; |
- optional sint32 y = 2; |
+// Contains display information that represents resize events coming from the |
+// client device. |
+message SizeMessage { |
+ optional uint64 width = 1; |
+ optional uint64 height = 2; |
} |