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// feature_engagement::AvailabilityModel content.
6
7syntax = "proto2";
8
9option optimize_for = LITE_RUNTIME;
10
11package feature_engagement;
12
13// Availability stores state for the availability of a particular feature.
14message Availability {
15  // The name of the feature. Must match base::Feature::name.
16  optional string feature_name = 1;
17
18  // The day number since epoch (1970-01-01) in the local timezone for when the
19  // particular |feature| was made available.
20  optional uint32 day = 2;
21}
22