2015-07-16 23:40:01 +02:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
|
|
|
#include "libcef/common/extensions/extensions_util.h"
|
|
|
|
|
|
|
|
#include "libcef/common/cef_switches.h"
|
|
|
|
|
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "chrome/common/chrome_switches.h"
|
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
|
|
|
bool ExtensionsEnabled() {
|
|
|
|
static bool enabled = !base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kDisableExtensions);
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PdfExtensionEnabled() {
|
|
|
|
static bool enabled =
|
2017-05-17 11:29:28 +02:00
|
|
|
ExtensionsEnabled() && !base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kDisablePdfExtension);
|
2015-07-16 23:40:01 +02:00
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:47:27 +02:00
|
|
|
bool PrintPreviewEnabled() {
|
2022-01-24 18:58:02 +01:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2019-07-17 20:47:27 +02:00
|
|
|
// Not currently supported on macOS.
|
|
|
|
return false;
|
|
|
|
#else
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!PdfExtensionEnabled()) {
|
2019-07-17 20:47:27 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2019-07-17 20:47:27 +02:00
|
|
|
|
|
|
|
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kDisablePrintPreview)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kEnablePrintPreview);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
} // namespace extensions
|