| Index: cc/proto/rectf.proto
|
| diff --git a/blimp/common/proto/common.proto b/cc/proto/rectf.proto
|
| similarity index 59%
|
| copy from blimp/common/proto/common.proto
|
| copy to cc/proto/rectf.proto
|
| index 578c02b63b78d3b0e09bedfc4582d517d2c263cb..5bd56f1cb9f2d09c42146476d6b81165fa5da160 100644
|
| --- a/blimp/common/proto/common.proto
|
| +++ b/cc/proto/rectf.proto
|
| @@ -1,17 +1,17 @@
|
| // 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";
|
|
|
| +import "pointf.proto";
|
| +import "sizef.proto";
|
| +
|
| option optimize_for = LITE_RUNTIME;
|
|
|
| -package blimp;
|
| +package cc.proto;
|
|
|
| -message CoordinatePair {
|
| - optional sint32 x = 1;
|
| - optional sint32 y = 2;
|
| +message RectF {
|
| + optional cc.proto.PointF origin = 1;
|
| + optional cc.proto.SizeF size = 2;
|
| }
|
| -
|
|
|