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

Unified Diff: base/trace_event/common/proto/event_args_test.proto

Issue 1947373002: Tracing V2 prototype [NOT FOR REVIEW] Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WORKS 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: base/trace_event/common/proto/event_args_test.proto
diff --git a/base/trace_event/common/proto/event_args_test.proto b/base/trace_event/common/proto/event_args_test.proto
new file mode 100644
index 0000000000000000000000000000000000000000..ff3d6e00b90f35e66cbc6fa505a08fcea0ef5e81
--- /dev/null
+++ b/base/trace_event/common/proto/event_args_test.proto
@@ -0,0 +1,15 @@
+syntax = "proto2";
+option optimize_for = LITE_RUNTIME;
+
+package tracing;
+
+message EventArgsTest {
+ message SubObject {
+ optional string name = 1;
+ optional uint32 a = 2;
+ optional uint32 b = 3;
+ optional uint32 c = 4;
+ optional string d = 5;
+ }
+ repeated SubObject things = 1;
+}
« no previous file with comments | « base/trace_event/common/proto/event_args_simple.proto ('k') | base/trace_event/common/proto/events_chunk.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698