mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Remove |accept_lang| parameter from CefJSDialogHandler::OnJSDialog and CefFormatUrlForSecurityDisplay (see https://crbug.com/336973#c36). - Remove remaining NPAPI-related code including functions from cef_web_plugin.h (see https://crbug.com/493212#c55). - Mac: 10.7+ deployment target is now required for client applications. - Mac: Remove CefBrowserHost::SetWindowVisibility (issue #1375). No replacement is required for windowed rendering. Use WasHidden for off-screen rendering. - Windows: Visual Studio 2015 Update 2 is now required when building CEF/Chromium.
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
 | |
| // reserved. Use of this source code is governed by a BSD-style license that can
 | |
| // be found in the LICENSE file.
 | |
| 
 | |
| // Defines all the "cef" command-line switches.
 | |
| 
 | |
| #ifndef CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
 | |
| #define CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
 | |
| #pragma once
 | |
| 
 | |
| namespace switches {
 | |
| 
 | |
| extern const char kLogFile[];
 | |
| extern const char kLogSeverity[];
 | |
| extern const char kLogSeverity_Verbose[];
 | |
| extern const char kLogSeverity_Info[];
 | |
| extern const char kLogSeverity_Warning[];
 | |
| extern const char kLogSeverity_Error[];
 | |
| extern const char kLogSeverity_Disable[];
 | |
| extern const char kResourcesDirPath[];
 | |
| extern const char kLocalesDirPath[];
 | |
| extern const char kDisablePackLoading[];
 | |
| extern const char kUncaughtExceptionStackSize[];
 | |
| extern const char kContextSafetyImplementation[];
 | |
| extern const char kDefaultEncoding[];
 | |
| extern const char kDisableJavascriptOpenWindows[];
 | |
| extern const char kDisableJavascriptCloseWindows[];
 | |
| extern const char kDisableJavascriptAccessClipboard[];
 | |
| extern const char kDisableJavascriptDomPaste[];
 | |
| extern const char kEnableCaretBrowsing[];
 | |
| extern const char kAllowUniversalAccessFromFileUrls[];
 | |
| extern const char kDisableImageLoading[];
 | |
| extern const char kImageShrinkStandaloneToFit[];
 | |
| extern const char kDisableTextAreaResize[];
 | |
| extern const char kDisableTabToLinks[];
 | |
| extern const char kPersistSessionCookies[];
 | |
| extern const char kPersistUserPreferences[];
 | |
| extern const char kEnableMediaStream[];
 | |
| extern const char kEnableSpeechInput[];
 | |
| extern const char kEnableProfanityFilter[];
 | |
| extern const char kCrashDumpsDir[];
 | |
| extern const char kDisableSpellChecking[];
 | |
| extern const char kEnableSpellingService[];
 | |
| extern const char kOverrideSpellCheckLang[];
 | |
| extern const char kEnableSystemFlash[];
 | |
| extern const char kDisableScrollBounce[];
 | |
| extern const char kDisablePdfExtension[];
 | |
| extern const char kEnableWidevineCdm[];
 | |
| extern const char kWidevineCdmPath[];
 | |
| extern const char kWidevineCdmVersion[];
 | |
| extern const char kPluginPolicy[];
 | |
| extern const char kPluginPolicy_Allow[];
 | |
| extern const char kPluginPolicy_Detect[];
 | |
| extern const char kPluginPolicy_Block[];
 | |
| extern const char kEnablePreferenceTesting[];
 | |
| 
 | |
| }  // namespace switches
 | |
| 
 | |
| #endif  // CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
 |