2015-12-01 08:21:15 +00:00
|
|
|
// 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_
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
|
2015-12-01 08:21:15 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
// Header to ignore CORS.
|
2016-04-11 09:36:33 +00:00
|
|
|
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[];
|
2015-12-01 08:21:15 +00:00
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-23 13:20:30 +00:00
|
|
|
// The MIME type used for the PDF plugin.
|
|
|
|
extern const char kPdfPluginMimeType[];
|
|
|
|
extern const char kPdfPluginPath[];
|
2017-02-03 09:36:53 +00:00
|
|
|
extern const char kPdfPluginSrc[];
|
|
|
|
|
|
|
|
// Constants for PDF viewer webui.
|
|
|
|
extern const char kPdfViewerUIOrigin[];
|
|
|
|
extern const char kPdfViewerUIHost[];
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-23 13:20:30 +00:00
|
|
|
|
2015-12-01 08:21:15 +00:00
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_COMMON_ATOM_CONSTANTS_H_
|