Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |