Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: ios/web/web_state/web_view_internal_creation_util.h

Issue 2627093003: Reuse context menu in StaticHTMLViewController (Closed)
Patch Set: feedback Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698