blob: cc2ae777e0b2a61989c9c5f6b00e202cc8fe7d8c [file] [log] [blame]
Elly Fong-Jones99d8cdad2019-08-27 15:48:451// Copyright 2019 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#ifndef CHROME_BROWSER_EXPIRED_FLAGS_LIST_H_
6#define CHROME_BROWSER_EXPIRED_FLAGS_LIST_H_
7
8// This header file declares a data structure that is generated at compile time
9// by //tools/flags/generate_expired_list.py - also see the
10// //chrome/browser:expired_flags_list target.
11
12namespace flags {
13
14struct ExpiredFlag {
15 const char* name;
16 int mstone;
17};
18
19// This array of names is terminated with a flag whose name is nullptr.
20extern const ExpiredFlag kExpiredFlags[];
21
22} // namespace flags
23
24#endif // CHROME_BROWSER_EXPIRED_FLAGS_LIST_H_