blob: cd2ece410926f8d0e26610d1e7282785df163c8b [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/printing/oop_features.h"
#include "base/feature_list.h"
#include "build/build_config.h"
#include "chrome/browser/printing/prefs_util.h"
#include "printing/printing_features.h"
namespace printing {
bool IsOopPrintingEnabled() {
// First check feature flag.
if (!base::FeatureList::IsEnabled(features::kEnableOopPrintDrivers)) {
return false;
}
// Check for policy override.
return OopPrintingPref().value_or(true);
}
bool ShouldPrintJobOop() {
return IsOopPrintingEnabled() &&
features::kEnableOopPrintDriversJobPrint.Get();
}
bool ShouldEarlyStartPrintBackendService() {
return IsOopPrintingEnabled() &&
#if BUILDFLAG(IS_WIN)
features::kEnableOopPrintDriversSingleProcess.Get() &&
#endif
features::kEnableOopPrintDriversEarlyStart.Get();
}
} // namespace printing