a24ad6bc14
* build: define compile time features with buildflag header * refactor: switch to BUILDFLAG(ENABLE_DESKTOP_CAPTURER) * refactor: switch to BUILDFLAG(ENABLE_RUN_AS_NODE) * refactor: switch to BUILDFLAG(ENABLE_OSR) * refactor: switch to BUILDFLAG(ENABLE_VIEW_API) * refactor: switch to BUILDFLAG(ENABLE_PEPPER_FLASH) * refactor: switch to BUILDFLAG(OVERRIDE_LOCATION_PROVIDER) * refactor: switch to BUILDFLAG(ENABLE_PDF_VIEWER)
38 lines
1.1 KiB
C++
38 lines
1.1 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 {
|
|
|
|
// 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_
|