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

Unified Diff: extensions/browser/guest_view/web_view/web_view_guest.cc

Issue 531963002: Add support for file inputs for all guest views (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement RunFileChooser as GuestViewBase method Created 6 years, 3 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
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/guest_view/web_view/web_view_guest.cc
diff --git a/extensions/browser/guest_view/web_view/web_view_guest.cc b/extensions/browser/guest_view/web_view/web_view_guest.cc
index 2276835350e56da06c1d875d94c6a403f991f06c..6a80c06ffac4eb47966af0c657b7000e0c5ff412 100644
--- a/extensions/browser/guest_view/web_view/web_view_guest.cc
+++ b/extensions/browser/guest_view/web_view/web_view_guest.cc
@@ -837,14 +837,6 @@ content::ColorChooser* WebViewGuest::OpenColorChooser(
web_contents, color, suggestions);
}
-void WebViewGuest::RunFileChooser(WebContents* web_contents,
- const content::FileChooserParams& params) {
- if (!attached() || !embedder_web_contents()->GetDelegate())
- return;
-
- embedder_web_contents()->GetDelegate()->RunFileChooser(web_contents, params);
-}
-
void WebViewGuest::NavigateGuest(const std::string& src) {
GURL url = ResolveURL(src);
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698