OLD | NEW |
| (Empty) |
1 // Copyright 2017 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. | |
4 | |
5 syntax = "proto3"; | |
6 option optimize_for = LITE_RUNTIME; | |
7 | |
8 package offline_pages.proto; | |
9 | |
10 message Timestamp { | |
11 // Represents seconds of UTC time since Unix epoch | |
12 // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to | |
13 // 9999-12-31T23:59:59Z inclusive. | |
14 int64 seconds = 1; | |
15 | |
16 // Non-negative fractions of a second at nanosecond resolution. Negative | |
17 // second values with fractions must still have non-negative nanos values | |
18 // that count forward in time. Must be from 0 to 999,999,999 | |
19 // inclusive. | |
20 int32 nanos = 2; | |
21 } | |
OLD | NEW |