blob: 5e3b3ea8ce7a60aee72abb08c3ada7f550896966 [file] [log] [blame]
Amin Hassani40c0f112020-04-15 09:55:00 -07001// 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
5syntax = "proto3";
6
7option optimize_for = LITE_RUNTIME;
8
9package dlcservice;
10
11message 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}