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

Unified Diff: cc/proto/scroll_offset.proto

Issue 1417963011: Added serialization to protobufs for property trees. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. 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
Index: cc/proto/scroll_offset.proto
diff --git a/cc/proto/pointf.proto b/cc/proto/scroll_offset.proto
similarity index 76%
copy from cc/proto/pointf.proto
copy to cc/proto/scroll_offset.proto
index e0aac584f274dd1c27cc293e1b91879beecb0267..5b9b74b465061b2f87cd559a2b35a51fc3167bdb 100644
--- a/cc/proto/pointf.proto
+++ b/cc/proto/scroll_offset.proto
@@ -8,7 +8,7 @@ option optimize_for = LITE_RUNTIME;
package cc.proto;
-message PointF {
- optional float x = 1;
- optional float y = 2;
-}
+message ScrollOffset {
+ optional double x = 1;
+ optional double y = 2;
+}

Powered by Google App Engine
This is Rietveld 408576698