Amin Hassani | 40c0f11 | 2020-04-15 09:55:00 -0700 | [diff] [blame] | 1 | // Copyright 2020 The Chromium OS 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 | |
| 7 | option optimize_for = LITE_RUNTIME; |
| 8 | |
| 9 | package dlcservice; |
| 10 | |
| 11 | message RefCountInfo { |
| 12 | message User { |
| 13 | // User’s ID can be whatever to identify a user which is basically |
| 14 | // the hash of the user's email address. |
| 15 | string sanitized_username = 1; |
| 16 | } |
| 17 | repeated User users = 1; |
| 18 | |
| 19 | // The timestamp of the last time the DLC was installed or uninstalled in |
| 20 | // microseconds. |
| 21 | int64 last_access_time_us = 2; |
| 22 | } |