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

Side by Side Diff: components/enhanced_bookmarks/proto/search.proto

Issue 538903003: Bring up of the server side full text search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/SigninManager/SigninManagerBase for ChromeOS. Created 6 years, 3 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 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698