1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // Copyright (c) 2018 GitHub, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #include "electron/buildflags/buildflags.h"
- #include "printing/buildflags/buildflags.h"
- #include "shell/common/gin_helper/dictionary.h"
- #include "shell/common/node_includes.h"
- namespace {
- bool IsBuiltinSpellCheckerEnabled() {
- return BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER);
- }
- bool IsPDFViewerEnabled() {
- return BUILDFLAG(ENABLE_PDF_VIEWER);
- }
- bool IsFakeLocationProviderEnabled() {
- return BUILDFLAG(OVERRIDE_LOCATION_PROVIDER);
- }
- bool IsPrintingEnabled() {
- return BUILDFLAG(ENABLE_PRINTING);
- }
- bool IsExtensionsEnabled() {
- return BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS);
- }
- bool IsComponentBuild() {
- #if defined(COMPONENT_BUILD)
- return true;
- #else
- return false;
- #endif
- }
- void Initialize(v8::Local<v8::Object> exports,
- v8::Local<v8::Value> unused,
- v8::Local<v8::Context> context,
- void* priv) {
- gin_helper::Dictionary dict(context->GetIsolate(), exports);
- dict.SetMethod("isBuiltinSpellCheckerEnabled", &IsBuiltinSpellCheckerEnabled);
- dict.SetMethod("isPDFViewerEnabled", &IsPDFViewerEnabled);
- dict.SetMethod("isFakeLocationProviderEnabled",
- &IsFakeLocationProviderEnabled);
- dict.SetMethod("isPrintingEnabled", &IsPrintingEnabled);
- dict.SetMethod("isComponentBuild", &IsComponentBuild);
- dict.SetMethod("isExtensionsEnabled", &IsExtensionsEnabled);
- }
- } // namespace
- NODE_LINKED_BINDING_CONTEXT_AWARE(electron_common_features, Initialize)
|