Index: ios/web/web_state/web_view_internal_creation_util.h |
diff --git a/ios/web/web_state/web_view_internal_creation_util.h b/ios/web/web_state/web_view_internal_creation_util.h |
index 0d7425bf748a89236b6771103db8a078cdc6291b..68e8912b914081ae99a51165a2884022b91ae6f5 100644 |
--- a/ios/web/web_state/web_view_internal_creation_util.h |
+++ b/ios/web/web_state/web_view_internal_creation_util.h |
@@ -8,6 +8,8 @@ |
#import <CoreGraphics/CoreGraphics.h> |
#import <WebKit/WebKit.h> |
+@protocol CRWContextMenuDelegate; |
+ |
// This file is a collection of functions that vend web views. |
namespace web { |
class BrowserState; |
@@ -24,6 +26,15 @@ class BrowserState; |
WKWebView* BuildWKWebView(CGRect frame, |
WKWebViewConfiguration* configuration, |
BrowserState* browser_state, |
+ BOOL use_desktop_user_agent, |
+ id<CRWContextMenuDelegate> context_menu_delegate); |
+ |
+// Creates and returns a new WKWebView for displaying regular web content. |
+// The preconditions for the creation of a WKWebView are the same as the |
+// previous method. |
+WKWebView* BuildWKWebView(CGRect frame, |
+ WKWebViewConfiguration* configuration, |
+ BrowserState* browser_state, |
BOOL use_desktop_user_agent); |
// Creates and returns a new WKWebView for displaying regular web content. |