Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / extensions / common / api / cast_channel / authority_keys.proto
blob791e831482e7332009304e29c6a7ab178ae9560b
1 // Copyright 2014 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.
5 syntax = "proto2";
7 option optimize_for = LITE_RUNTIME;
9 package extensions.api.cast_channel.proto;
11 message AuthorityKeys {
12   message Key {
13     required bytes fingerprint = 1;
14     required bytes public_key = 2;
15   }
16   repeated Key keys = 1;