Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2022 The Chromium Authors |
Carlos IL | 092a905570 | 2022-03-16 15:53:26 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | syntax = "proto3"; | ||||
6 | |||||
7 | package chrome_browser_key_pinning; | ||||
8 | |||||
9 | option optimize_for = LITE_RUNTIME; | ||||
10 | |||||
11 | message KPTimestamp { | ||||
12 | int64 seconds = 1; | ||||
13 | |||||
14 | int32 nanos = 2; | ||||
15 | } |