mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +00:00
wpesrc: Always log loaded URI
This commit is contained in:
parent
451074a7e0
commit
22b94a7a84
1 changed files with 2 additions and 2 deletions
|
@ -330,14 +330,14 @@ void WPEThreadedView::loadUriUnlocked(const gchar* uri)
|
||||||
{
|
{
|
||||||
if (webkit.uri)
|
if (webkit.uri)
|
||||||
g_free(webkit.uri);
|
g_free(webkit.uri);
|
||||||
|
|
||||||
|
GST_DEBUG("loading %s", uri);
|
||||||
webkit.uri = g_strdup(uri);
|
webkit.uri = g_strdup(uri);
|
||||||
webkit_web_view_load_uri(webkit.view, webkit.uri);
|
webkit_web_view_load_uri(webkit.view, webkit.uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WPEThreadedView::loadUri(const gchar* uri)
|
void WPEThreadedView::loadUri(const gchar* uri)
|
||||||
{
|
{
|
||||||
GST_DEBUG("loading %s", uri);
|
|
||||||
|
|
||||||
struct UriContext {
|
struct UriContext {
|
||||||
WPEThreadedView& view;
|
WPEThreadedView& view;
|
||||||
const gchar* uri;
|
const gchar* uri;
|
||||||
|
|
Loading…
Reference in a new issue