[M85 Dev][EFL] Fix errors to generate ninja files
[platform/framework/web/chromium-efl.git] / chrome / browser / unexpire_flags.h
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_UNEXPIRE_FLAGS_H_
6 #define CHROME_BROWSER_UNEXPIRE_FLAGS_H_
7
8 #include "base/callback.h"
9 #include "base/feature_list.h"
10
11 namespace flags {
12
13 bool IsFlagExpired(const char* internal_name);
14
15 namespace testing {
16
17 using FlagPredicate = base::RepeatingCallback<bool(const std::string&)>;
18
19 void SetFlagExpiredPredicate(FlagPredicate predicate);
20
21 }  // namespace testing
22
23 }  // namespace flags
24
25 #endif  // CHROME_BROWSER_UNEXPIRE_FLAGS_H_