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

Side by Side Diff: blimp/common/proto/blob_cache.proto

Issue 1867653002: Initial version of Blimp BlobCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed all comments. Created 4 years, 8 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 2016 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 // Message definitions related to the BlobCache.
6
7 syntax = "proto2";
8
9 option optimize_for = LITE_RUNTIME;
10
11 package blimp;
12
13 // An representation sent from the engine to the client for retrieving an image
14 // from the cache or reading from |payload|.
15 message BlobCacheImage {
Kevin M 2016/04/14 20:08:30 BlobCacheImageMetadata? It'll just be metadata in
nyquist 2016/04/15 01:27:12 Done.
16 optional bytes id = 1;
17 optional int32 width = 2;
18 optional int32 height = 3;
19 optional bytes payload = 4;
Kevin M 2016/04/14 20:08:30 Add TODO to remove |payload| after we incorporate
nyquist 2016/04/15 01:27:12 Done.
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698