summaryrefslogtreecommitdiff
path: root/chromium/components/feed/core/proto/content_storage.proto
blob: 750a15cb61033f250054f3cfe40e5f3911ebf5dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

syntax = "proto2";

option optimize_for = LITE_RUNTIME;

package feed;

// Used for storing content data in content storage.
message ContentStorageProto {
  // Original key for data.
  optional string key = 1;

  // Content data.
  optional bytes content_data = 2;
}