Elly Fong-Jones | 99d8cdad | 2019-08-27 15:48:45 | [diff] [blame] | 1 | // 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 | |
| 12 | namespace flags { |
| 13 | |
| 14 | struct ExpiredFlag { |
| 15 | const char* name; |
| 16 | int mstone; |
| 17 | }; |
| 18 | |
| 19 | // This array of names is terminated with a flag whose name is nullptr. |
| 20 | extern const ExpiredFlag kExpiredFlags[]; |
| 21 | |
| 22 | } // namespace flags |
| 23 | |
| 24 | #endif // CHROME_BROWSER_EXPIRED_FLAGS_LIST_H_ |