summaryrefslogtreecommitdiffstats
path: root/src/core/renderer/print_web_view_helper_delegate_qt.h
blob: 5c7dd24315f6f66dbdfa8a85e408c1a478d0dbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

// Copyright 2015 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.Chromium file.

#ifndef PRINT_WEB_VIEW_HELPER_DELEGATE_QT_H
#define PRINT_WEB_VIEW_HELPER_DELEGATE_QT_H

#include "components/printing/renderer/print_render_frame_helper.h"

namespace blink {
class WebLocalFrame;
}

namespace QtWebEngineCore {

class PrintWebViewHelperDelegateQt : public printing::PrintRenderFrameHelper::Delegate
{
public:
    ~PrintWebViewHelperDelegateQt() override;

    blink::WebElement GetPdfElement(blink::WebLocalFrame *frame) override;

    bool IsPrintPreviewEnabled() override;

    bool OverridePrint(blink::WebLocalFrame *frame) override;
};

} // namespace QtWebEngineCore

#endif // PRINT_WEB_VIEW_HELPER_DELEGATE_QT_H