2019-04-23 16:18:12 -06: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 00:34:31 -07:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|
2019-04-23 16:18:12 -06:00
|
|
|
|
2024-02-22 06:31:53 -07:00
|
|
|
#include <string>
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2019-04-23 16:18:12 -06:00
|
|
|
void InitializeFeatureList();
|
2021-03-25 18:49:00 -06:00
|
|
|
void InitializeFieldTrials();
|
2024-02-22 06:31:53 -07:00
|
|
|
std::string EnablePlatformSpecificFeatures();
|
2021-03-25 18:49:00 -06:00
|
|
|
} // namespace electron
|
2019-04-23 16:18:12 -06:00
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
|