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

Unified Diff: cc/proto/size.proto

Issue 1394353002: Add Protobuf support in cc for gfx objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move deps to public_deps Created 5 years, 2 months 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 | « cc/proto/rectf.proto ('k') | cc/proto/sizef.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/size.proto
diff --git a/blimp/common/proto/common.proto b/cc/proto/size.proto
similarity index 59%
copy from blimp/common/proto/common.proto
copy to cc/proto/size.proto
index 578c02b63b78d3b0e09bedfc4582d517d2c263cb..9cce25fa778b58f3e470916c408f879abeb8d671 100644
--- a/blimp/common/proto/common.proto
+++ b/cc/proto/size.proto
@@ -1,17 +1,14 @@
// 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";
option optimize_for = LITE_RUNTIME;
-package blimp;
+package cc.proto;
-message CoordinatePair {
- optional sint32 x = 1;
- optional sint32 y = 2;
+message Size {
+ optional int64 width = 1;
+ optional int64 height = 2;
}
-
« no previous file with comments | « cc/proto/rectf.proto ('k') | cc/proto/sizef.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698