Summary: | [GTK] Remove WKFullScreenClientGtk | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Carlos Garcia Campos <cgarcia> | ||||
Component: | WebKitGTK | Assignee: | Nobody <webkit-unassigned> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | bugs-noreply, mcatanzaro, zan | ||||
Priority: | P2 | Keywords: | Gtk | ||||
Version: | WebKit Nightly Build | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Attachments: |
|
Description
Carlos Garcia Campos
2017-06-09 01:08:51 PDT
Created attachment 312407 [details]
Patch
Comment on attachment 312407 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=312407&action=review > Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp:311 > + if (WEBKIT_IS_WEB_VIEW(m_viewWidget)) > + webkitWebViewEnterFullScreen(WEBKIT_WEB_VIEW(m_viewWidget)); > + else > + webkitWebViewBaseEnterFullScreen(WEBKIT_WEB_VIEW_BASE(m_viewWidget)); What... what could be a WebKitWebViewBase but not a WebKitWebView...? (In reply to Michael Catanzaro from comment #2) > Comment on attachment 312407 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=312407&action=review > > > Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp:311 > > + if (WEBKIT_IS_WEB_VIEW(m_viewWidget)) > > + webkitWebViewEnterFullScreen(WEBKIT_WEB_VIEW(m_viewWidget)); > > + else > > + webkitWebViewBaseEnterFullScreen(WEBKIT_WEB_VIEW_BASE(m_viewWidget)); > > What... what could be a WebKitWebViewBase but not a WebKitWebView...? C API WKView, that's why we have WebKitWebViewBase. It's used by WTR and C API unit tests. Committed r218064: <http://trac.webkit.org/changeset/218064> |