This source file includes following definitions.
- GetDelegateView
- OnMessageReceived
- GetAsWebContents
- GetWebkitPrefs
- IsFullscreenForCurrentTab
- GetSessionStorageNamespace
- GetFrameTree
#include "content/browser/renderer_host/render_view_host_delegate.h"
#include "url/gurl.h"
#include "webkit/common/webpreferences.h"
namespace content {
RenderViewHostDelegateView* RenderViewHostDelegate::GetDelegateView() {
return NULL;
}
bool RenderViewHostDelegate::OnMessageReceived(RenderViewHost* render_view_host,
const IPC::Message& message) {
return false;
}
WebContents* RenderViewHostDelegate::GetAsWebContents() {
return NULL;
}
WebPreferences RenderViewHostDelegate::GetWebkitPrefs() {
return WebPreferences();
}
bool RenderViewHostDelegate::IsFullscreenForCurrentTab() const {
return false;
}
SessionStorageNamespace* RenderViewHostDelegate::GetSessionStorageNamespace(
SiteInstance* instance) {
return NULL;
}
FrameTree* RenderViewHostDelegate::GetFrameTree() {
return NULL;
}
}