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

Unified Diff: extensions/common/api/cast_channel/authority_keys.proto

Issue 627573002: Enable passing cast channel certificate authority keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review changes. Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: extensions/common/api/cast_channel/authority_keys.proto
diff --git a/components/leveldb_proto/testing/proto/test.proto b/extensions/common/api/cast_channel/authority_keys.proto
similarity index 52%
copy from components/leveldb_proto/testing/proto/test.proto
copy to extensions/common/api/cast_channel/authority_keys.proto
index 84981051657158a9eb44ddcd5cd8b63556a1e97c..aba7488180b8a3b3357a902aa4e104f277887068 100644
--- a/components/leveldb_proto/testing/proto/test.proto
+++ b/extensions/common/api/cast_channel/authority_keys.proto
@@ -6,15 +6,12 @@ syntax = "proto2";
option optimize_for = LITE_RUNTIME;
-package leveldb_proto;
+package extensions.core_api.cast_channel.proto;
-// A proto to test leveldb_proto::ProtoDatabaseImpl.
-//
-// Next tag: 3
-message TestProto {
- // Arbitary id.
- optional string id = 1;
-
- // Arbitrary data.
- optional string data = 2;
+message AuthorityKeys {
+ message Key {
+ required bytes fingerprint = 1;
+ required bytes public_key = 2;
+ }
+ repeated Key keys = 1;
}

Powered by Google App Engine
This is Rietveld 408576698