[M120 Migration][VD] Remove accessing oom_score_adj in zygote process
[platform/framework/web/chromium-efl.git] / printing / printing_context_factory_for_test.h
1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_
6 #define PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_
7
8 #include <memory>
9
10 #include "printing/printing_context.h"
11
12 namespace printing {
13
14 class PrintingContextFactoryForTest {
15  public:
16   virtual std::unique_ptr<PrintingContext> CreatePrintingContext(
17       PrintingContext::Delegate* delegate,
18       bool skip_system_calls) = 0;
19 };
20
21 }  // namespace printing
22
23 #endif  // PRINTING_PRINTING_CONTEXT_FACTORY_FOR_TEST_H_