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

Unified Diff: components/tracing/proto/event_args_for_testing.proto

Issue 2164013002: [OBSOLETE] tracing v2: introduce TraceBufferWriter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@proto_handle
Patch Set: . Created 4 years, 5 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 | « components/tracing/proto/event.proto ('k') | components/tracing/proto/events_chunk.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/tracing/proto/event_args_for_testing.proto
diff --git a/components/tracing/proto/event_args_for_testing.proto b/components/tracing/proto/event_args_for_testing.proto
new file mode 100644
index 0000000000000000000000000000000000000000..5e0874b2f392b1363b3baec1622dcf00c02dde46
--- /dev/null
+++ b/components/tracing/proto/event_args_for_testing.proto
@@ -0,0 +1,19 @@
+// Copyright 2016 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.
+
+syntax = "proto2";
+option optimize_for = LITE_RUNTIME;
+
+package tracing.proto;
+
+message EventArgsForTesting {
+ message NestedMessage {
+ optional uint64 uint64_field = 1;
+ optional bytes bytes_field = 100;
+ }
+
+ optional uint32 uint32_field = 1;
+ optional string string_field = 2;
+ repeated NestedMessage nested_fields = 3;
+}
« no previous file with comments | « components/tracing/proto/event.proto ('k') | components/tracing/proto/events_chunk.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698