blob: 374ba62191910d0306d67617d32c43ce712556c3 [file] [log] [blame]
// Copyright 2021 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.
#ifndef PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_
#define PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_
#include <memory>
#include "printing/printing_context.h"
namespace printing {
class PrintingContextFactoryForTest {
public:
virtual std::unique_ptr<PrintingContext> CreatePrintingContext(
PrintingContext::Delegate* delegate,
bool skip_system_calls) = 0;
};
} // namespace printing
#endif // PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_