mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
24 lines
433 B
C++
24 lines
433 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2023, Linus Groh <linusg@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWebView/ViewImplementation.h>
|
||
|
|
||
|
namespace WebView {
|
||
|
|
||
|
WebContentClient& ViewImplementation::client()
|
||
|
{
|
||
|
VERIFY(m_client_state.client);
|
||
|
return *m_client_state.client;
|
||
|
}
|
||
|
|
||
|
WebContentClient const& ViewImplementation::client() const
|
||
|
{
|
||
|
VERIFY(m_client_state.client);
|
||
|
return *m_client_state.client;
|
||
|
}
|
||
|
|
||
|
}
|