Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3538)

Unified Diff: blimp/common/proto/size.proto

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Fix build break Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/common/proto/render_widget.proto ('k') | blimp/engine/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « blimp/common/proto/render_widget.proto ('k') | blimp/engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698