This fixes a nasty warning / permission dialog that pops up to end-users when consuming legacy APIs. Chrome has flipped these flags via field trials as have other Electron apps. It should just be the default. Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Samuel Attard <marshallofsound@electronjs.org>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			453 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			453 B
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2019 GitHub, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#ifndef ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
 | 
						|
#define ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace electron {
 | 
						|
void InitializeFeatureList();
 | 
						|
void InitializeFieldTrials();
 | 
						|
std::string EnablePlatformSpecificFeatures();
 | 
						|
}  // namespace electron
 | 
						|
 | 
						|
#endif  // ELECTRON_SHELL_BROWSER_FEATURE_LIST_H_
 |