feature_list.h 453 B

12345678910111213141516
  1. // Copyright (c) 2019 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
  5. #define ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
  6. #include <string>
  7. namespace electron {
  8. void InitializeFeatureList();
  9. void InitializeFieldTrials();
  10. std::string EnablePlatformSpecificFeatures();
  11. } // namespace electron
  12. #endif // ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_