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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.cc

Issue 272573005: <webview>: Move NewWindow API to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_rename
Patch Set: Merge with ToT Created 6 years, 7 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: content/public/browser/browser_plugin_guest_delegate.cc
diff --git a/content/public/browser/browser_plugin_guest_delegate.cc b/content/public/browser/browser_plugin_guest_delegate.cc
index 8ebfbe5a3cd70b4e4b848b250881fc89d17a0018..75a9f89fbac1a276990ab0df3e82f36e03df06ff 100644
--- a/content/public/browser/browser_plugin_guest_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_delegate.cc
@@ -8,22 +8,10 @@
namespace content {
-WebContents* BrowserPluginGuestDelegate::GetOpener() const {
- return NULL;
-}
-
bool BrowserPluginGuestDelegate::IsDragAndDropEnabled() {
return false;
}
-bool BrowserPluginGuestDelegate::IsOverridingUserAgent() const {
- return false;
-}
-
-GURL BrowserPluginGuestDelegate::ResolveURL(const std::string& src) {
- return GURL(src);
-}
-
void BrowserPluginGuestDelegate::RequestMediaAccessPermission(
const MediaStreamRequest& request,
const MediaResponseCallback& callback) {
@@ -56,4 +44,10 @@ bool BrowserPluginGuestDelegate::HandleContextMenu(
return false;
}
+WebContents* BrowserPluginGuestDelegate::OpenURLFromTab(
+ WebContents* source,
+ const OpenURLParams& params) {
+ return NULL;
+}
+
} // namespace content
« no previous file with comments | « content/public/browser/browser_plugin_guest_delegate.h ('k') | content/public/browser/content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698