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

Side by Side Diff: components/suggestions/proto/suggestions.proto

Issue 410673002: [Suggestions] Moving suggestions code to a new component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps Created 6 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 | Annotate | Revision Log
« no previous file with comments | « components/suggestions/proto/BUILD.gn ('k') | components/suggestions/suggestions_pref_names.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
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // ThumbnailData contains the data to represent a website thumbnail. 55 // ThumbnailData contains the data to represent a website thumbnail.
56 // 56 //
57 // Next tag: 3 57 // Next tag: 3
58 message ThumbnailData { 58 message ThumbnailData {
59 // The URL of the website represented by this Thumbnail. 59 // The URL of the website represented by this Thumbnail.
60 optional string url = 1; 60 optional string url = 1;
61 61
62 // Bitmap bytes, encoded as JPEG. 62 // Bitmap bytes, encoded as JPEG.
63 optional bytes data = 2; 63 optional bytes data = 2;
64 } 64 }
OLDNEW
« no previous file with comments | « components/suggestions/proto/BUILD.gn ('k') | components/suggestions/suggestions_pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698