summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/share/proto/share_ranking_message.proto
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/share/proto/share_ranking_message.proto')
-rw-r--r--chromium/chrome/browser/share/proto/share_ranking_message.proto16
1 files changed, 16 insertions, 0 deletions
diff --git a/chromium/chrome/browser/share/proto/share_ranking_message.proto b/chromium/chrome/browser/share/proto/share_ranking_message.proto
new file mode 100644
index 00000000000..5ec3d189baa
--- /dev/null
+++ b/chromium/chrome/browser/share/proto/share_ranking_message.proto
@@ -0,0 +1,16 @@
+// Copyright 2021 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 = "proto3";
+
+package sharing.proto;
+
+option optimize_for = LITE_RUNTIME;
+
+// A ShareRanking represents an ordered list of share targets for a specific
+// share type. There is a ShareRanking for text shares, a ShareRanking for image
+// shares, and so on.
+message ShareRanking {
+ repeated string targets = 1;
+}