feature_list.h 500 B

1234567891011121314151617
  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. std::string DisablePlatformSpecificFeatures();
  12. } // namespace electron
  13. #endif // ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_