#include "content/public/browser/browser_plugin_guest_delegate.h"
namespace content {
std::unique_ptr<WebContents> BrowserPluginGuestDelegate::CreateNewGuestWindow(
const WebContents::CreateParams& create_params) {
NOTREACHED();
}
WebContents* BrowserPluginGuestDelegate::GetOwnerWebContents() {
return nullptr;
}
RenderFrameHost* BrowserPluginGuestDelegate::GetProspectiveOuterDocument() {
return nullptr;
}
base::WeakPtr<BrowserPluginGuestDelegate>
BrowserPluginGuestDelegate::GetGuestDelegateWeakPtr() {
NOTREACHED();
}
}