blob: 824ad8befeeee09f6d56142c27140adb66ddf4c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is a generated file. Do not edit it! It was generated by:
// foobar
#include "base/feature_list.h"
#include "chrome/browser/unexpire_flags_gen.h"
namespace flags {
const base::Feature kUnexpireFlagsM122 {
"UnexpireFlagsM122",
base::FEATURE_DISABLED_BY_DEFAULT
};
const base::Feature kUnexpireFlagsM123 {
"UnexpireFlagsM123",
base::FEATURE_DISABLED_BY_DEFAULT
};
// Returns the unexpire feature for the given mstone, if any.
const base::Feature* GetUnexpireFeatureForMilestone(int milestone) {
switch (milestone) {
case 122: return &kUnexpireFlagsM122;
case 123: return &kUnexpireFlagsM123;
default: return nullptr;
}
}
} // namespace flags
|