summaryrefslogtreecommitdiff
path: root/chromium/components/feed/core/proto/feed_storage.proto
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/feed/core/proto/feed_storage.proto')
-rw-r--r--chromium/components/feed/core/proto/feed_storage.proto20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/components/feed/core/proto/feed_storage.proto b/chromium/components/feed/core/proto/feed_storage.proto
new file mode 100644
index 00000000000..6796b2b798c
--- /dev/null
+++ b/chromium/components/feed/core/proto/feed_storage.proto
@@ -0,0 +1,20 @@
+// 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;
+
+message FeedStorageProto {
+ // original key for data.
+ optional string key = 1;
+
+ // Content data.
+ optional bytes content_data = 2;
+
+ // Journal data.
+ repeated bytes journal_data = 3;
+}