Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit a806253

Browse files
committed
[[ libbrowser ]] Remove deprecated UIWebView browser implementation
This patch removes the old UIWebView based iOS browser control implementation so it is no longer compiled into the ios standalone engine. This will stop iOS app store submissions from receiving warnings about the use of the deprecated UIWebView class.
1 parent 677a498 commit a806253

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

libbrowser/libbrowser.gyp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242

4343
'src/signal_restore_posix.cpp',
4444

45-
'src/libbrowser_uiwebview.h',
46-
'src/libbrowser_uiwebview.mm',
47-
4845
'src/libbrowser_osx_webview.h',
4946
'src/libbrowser_osx_webview.mm',
5047

@@ -143,9 +140,6 @@
143140
{
144141
'sources!':
145142
[
146-
'src/libbrowser_uiwebview.h',
147-
'src/libbrowser_uiwebview.mm',
148-
149143
'src/libbrowser_wkwebview.h',
150144
'src/libbrowser_wkwebview.mm',
151145

libbrowser/src/libbrowser_ios_factories.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@
1818

1919
#include "libbrowser_internal.h"
2020

21-
extern bool MCUIWebViewBrowserFactoryCreate(MCBrowserFactoryRef &r_factory);
2221
extern bool MCWKWebViewBrowserFactoryCreate(MCBrowserFactoryRef &r_factory);
2322

2423
MCBrowserFactoryMap kMCBrowserFactoryMap[] =
2524
{
2625
{ "WkWebView", nil, MCWKWebViewBrowserFactoryCreate },
27-
{ "UIWebView", nil, MCUIWebViewBrowserFactoryCreate },
2826
{ nil, nil, nil },
2927
};
3028

0 commit comments

Comments
 (0)