summaryrefslogtreecommitdiffstats
path: root/src/core/color_chooser_qt.cpp
blob: 4aa3101b75f0546cc76129fcb7763992f6e0e328 (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
// 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

#include "color_chooser_qt.h"
#include "color_chooser_controller.h"
#include "color_chooser_controller_p.h"

namespace content {
    class WebContents;
}

namespace QtWebEngineCore {

ColorChooserQt::ColorChooserQt(content::WebContents *content, const QColor &color)
{
    m_controller.reset(new ColorChooserController(new ColorChooserControllerPrivate(content, color)));
}

QSharedPointer<ColorChooserController> ColorChooserQt::controller()
{
    return m_controller;
}

} // namespace