OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 // | |
5 syntax = "proto2"; | |
6 option optimize_for = LITE_RUNTIME; | |
Yaron
2014/09/05 04:37:52
I suspect this should be referenced in
noyau (Ping after 24h)
2014/09/08 09:46:49
Done.
| |
7 | |
8 package image.collections; | |
9 | |
10 message CorpusSearchResult { | |
Yaron
2014/09/05 04:37:52
Should have some brief comments.
noyau (Ping after 24h)
2014/09/08 09:46:49
Done.
| |
11 enum Status { | |
12 UNKNOWN = 0; | |
13 OK = 1; | |
14 FAILED_RPC = 2; | |
15 NO_VALID_BACKEND = 3; | |
16 INVALID_INPUT = 4; | |
17 } | |
18 optional Status status = 1; | |
19 | |
20 message ClipResult { | |
21 optional string clip_id = 1; | |
22 optional string title = 2; | |
23 optional string snippet = 3; | |
24 } | |
25 repeated ClipResult results = 2; | |
26 } | |
OLD | NEW |