* Added mouse forward/back button support on Linux * Added browser history navigation action bindings for Windows, Mac, and Linux keyboard * Removed new `history-action` event and modified `app-command` to execute on such events * Removed attempt at macOS support and added constants * Clarified app-command documentation * Reverted 'app-command' description change * Format code
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.2 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2015 GitHub, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#ifndef ATOM_COMMON_ATOM_CONSTANTS_H_
 | 
						|
#define ATOM_COMMON_ATOM_CONSTANTS_H_
 | 
						|
 | 
						|
#include "electron/buildflags/buildflags.h"
 | 
						|
 | 
						|
namespace atom {
 | 
						|
 | 
						|
// The app-command in NativeWindow.
 | 
						|
extern const char kBrowserForward[];
 | 
						|
extern const char kBrowserBackward[];
 | 
						|
 | 
						|
// Header to ignore CORS.
 | 
						|
extern const char kCORSHeader[];
 | 
						|
 | 
						|
// Strings describing Chrome security policy for DevTools security panel.
 | 
						|
extern const char kSHA1Certificate[];
 | 
						|
extern const char kSHA1MajorDescription[];
 | 
						|
extern const char kSHA1MinorDescription[];
 | 
						|
extern const char kCertificateError[];
 | 
						|
extern const char kValidCertificate[];
 | 
						|
extern const char kValidCertificateDescription[];
 | 
						|
extern const char kSecureProtocol[];
 | 
						|
extern const char kSecureProtocolDescription[];
 | 
						|
 | 
						|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
 | 
						|
// The MIME type used for the PDF plugin.
 | 
						|
extern const char kPdfPluginMimeType[];
 | 
						|
extern const char kPdfPluginPath[];
 | 
						|
extern const char kPdfPluginSrc[];
 | 
						|
 | 
						|
// Constants for PDF viewer webui.
 | 
						|
extern const char kPdfViewerUIOrigin[];
 | 
						|
extern const char kPdfViewerUIHost[];
 | 
						|
#endif  // BUILDFLAG(ENABLE_PDF_VIEWER)
 | 
						|
 | 
						|
}  // namespace atom
 | 
						|
 | 
						|
#endif  // ATOM_COMMON_ATOM_CONSTANTS_H_
 |