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

Unified Diff: cc/proto/element_id.proto

Issue 1973083002: Use element id's for animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get element id's from scroll node data directly. Created 4 years, 7 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
Index: cc/proto/element_id.proto
diff --git a/cc/proto/rectf.proto b/cc/proto/element_id.proto
similarity index 60%
copy from cc/proto/rectf.proto
copy to cc/proto/element_id.proto
index 5bd56f1cb9f2d09c42146476d6b81165fa5da160..a7bcb52bd0887fea95273b8b187460732f62e234 100644
--- a/cc/proto/rectf.proto
+++ b/cc/proto/element_id.proto
@@ -4,14 +4,14 @@
syntax = "proto2";
-import "pointf.proto";
-import "sizef.proto";
-
option optimize_for = LITE_RUNTIME;
package cc.proto;
-message RectF {
- optional cc.proto.PointF origin = 1;
- optional cc.proto.SizeF size = 2;
+// The message declared in this file corresponds to the class declared in
+// cc/animation/element_id.h
+
+// NEXT ID: 2
+message ElementId {
+ required int64 id = 1;
}

Powered by Google App Engine
This is Rietveld 408576698