2019-04-23 15:18:12 -07:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|
2019-04-23 15:18:12 -07:00
|
|
|
|
2024-02-22 14:32:32 +01:00
|
|
|
#include <string>
|
|
|
|
|
2019-04-23 15:18:12 -07:00
|
|
|
namespace electron {
|
|
|
|
void InitializeFeatureList();
|
2021-03-26 01:49:00 +01:00
|
|
|
void InitializeFieldTrials();
|
2024-02-22 14:32:32 +01:00
|
|
|
std::string EnablePlatformSpecificFeatures();
|
2021-03-26 01:49:00 +01:00
|
|
|
} // namespace electron
|
2019-04-23 15:18:12 -07:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|