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

Side by Side Diff: chrome/browser/search/suggestions/proto/suggestions.proto

Issue 299713007: [Suggestions] Adding a Thumbnail Manager for the Suggestions Service (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now swapping Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/search/suggestions/suggestions_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package suggestions; 9 package suggestions;
10 10
11 // The SuggestionsProfile is a protobuf response from the server that contains 11 // The SuggestionsProfile is a protobuf response from the server that contains
12 // the list of suggestions to be presented to the user. 12 // the list of suggestions to be presented to the user.
13 // 13 //
14 // Next tag: 2 14 // Next tag: 2
15 message SuggestionsProfile { 15 message SuggestionsProfile {
16 repeated ChromeSuggestion suggestions = 1; 16 repeated ChromeSuggestion suggestions = 1;
17 } 17 }
18 18
19 // The suggestions for this user, ordered from best to worst. 19 // The suggestions for this user, ordered from best to worst.
20 // 20 //
21 // Next tag: 3 21 // Next tag: 3
22 message ChromeSuggestion { 22 message ChromeSuggestion {
23 // The URL of the suggestion. 23 // The URL of the suggestion.
24 optional string url = 1; 24 optional string url = 1;
25 25
26 // Title of the suggestion. 26 // Title of the suggestion.
27 optional string title = 2; 27 optional string title = 2;
28
29 // The URL of the favicon associated with this page.
30 optional string favicon_url = 3;
31
32 // The URL of the thumbnail associated with this page.
33 optional string thumbnail = 4;
28 } 34 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/search/suggestions/suggestions_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698