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

Side by Side Diff: appengine/cmd/milo/logdog/stream.proto

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Fix successful build state, derive more Swarming parameters from milo proto common code. Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file.
4
5 syntax = "proto3";
6
7 package logdog;
8
9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto";
10
11 /**
nodir 2016/07/29 18:42:06 nit: I think we use // everywhere, in particular i
dnj 2016/07/29 19:57:35 Done.
12 * Item is a full annotation protobuf state item.
nodir 2016/07/29 18:42:06 please add a comment that this message is not inte
dnj 2016/07/29 19:57:35 Done.
13 */
14 message Item {
15 /** Step is the root annotation step. */
16 milo.Step step = 1;
17
18 /** Finished is true if this is the last annotation protobuf in the stream. */
19 bool finished = 2;
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698