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

Side by Side Diff: milo/appengine/job_source/raw_presentation/internal/stream.proto

Issue 2944983003: [milo] {buildbucket,buildbot,swarming,logdog} -> backends/*. (Closed)
Patch Set: fix the tests Created 3 years, 6 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
1 // Copyright 2016 The LUCI Authors. All rights reserved. 1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 syntax = "proto3"; 5 syntax = "proto3";
6 6
7 package internal; 7 package internal;
8 8
9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto"; 9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto";
10 10
11 // Item is a full annotation protobuf state item. It is used to serialize and 11 // Item is a full annotation protobuf state item. It is used to serialize and
12 // deserialize Step and associated fetch data into memcache. 12 // deserialize Step and associated fetch data into memcache.
13 message CachedStep { 13 message CachedStep {
14 // Step is the root annotation step. 14 // Step is the root annotation step.
15 milo.Step step = 1; 15 milo.Step step = 1;
16 16
17 // Finished is true if this is the last annotation protobuf in the stream. 17 // Finished is true if this is the last annotation protobuf in the stream.
18 bool finished = 2; 18 bool finished = 2;
19 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698