blob: 97d509b427c64e891b22b2c2934d3c986a924817 [file] [log] [blame]
// Copyright 2019 The Chromium 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 "chrome/browser/chromeos/printing/printing_stubs.h"
namespace chromeos {
std::vector<Printer> StubCupsPrintersManager::GetPrinters(
PrinterClass printer_class) const {
return {};
}
bool StubCupsPrintersManager::IsPrinterInstalled(const Printer& printer) const {
return false;
}
base::Optional<Printer> StubCupsPrintersManager::GetPrinter(
const std::string& id) const {
return {};
}
PrintServersManager* StubCupsPrintersManager::GetPrintServersManager() const {
return nullptr;
}
} // namespace chromeos