unexpire_test.cc.expected 847 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2020 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. // This is a generated file. Do not edit it! It was generated by:
  5. // foobar
  6. #include "base/feature_list.h"
  7. #include "chrome/browser/unexpire_flags_gen.h"
  8. namespace flags {
  9. const base::Feature kUnexpireFlagsM122 {
  10. "UnexpireFlagsM122",
  11. base::FEATURE_DISABLED_BY_DEFAULT
  12. };
  13. const base::Feature kUnexpireFlagsM123 {
  14. "UnexpireFlagsM123",
  15. base::FEATURE_DISABLED_BY_DEFAULT
  16. };
  17. // Returns the unexpire feature for the given mstone, if any.
  18. const base::Feature* GetUnexpireFeatureForMilestone(int milestone) {
  19. switch (milestone) {
  20. case 122: return &kUnexpireFlagsM122;
  21. case 123: return &kUnexpireFlagsM123;
  22. default: return nullptr;
  23. }
  24. }
  25. } // namespace flags