// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/renderer_host/render_view_host_delegate.h" #include "base/singleton.h" #include "chrome/common/render_messages.h" #include "chrome/common/render_messages_params.h" #include "chrome/common/renderer_preferences.h" #include "gfx/rect.h" #include "googleurl/src/gurl.h" #include "webkit/glue/webpreferences.h" #if defined(TOOLKIT_USES_GTK) #include "chrome/browser/ui/gtk/gtk_util.h" #endif RenderViewHostDelegate::View* RenderViewHostDelegate::GetViewDelegate() { return NULL; } RenderViewHostDelegate::RendererManagement* RenderViewHostDelegate::GetRendererManagementDelegate() { return NULL; } RenderViewHostDelegate::ContentSettings* RenderViewHostDelegate::GetContentSettingsDelegate() { return NULL; } RenderViewHostDelegate::Save* RenderViewHostDelegate::GetSaveDelegate() { return NULL; } RenderViewHostDelegate::Printing* RenderViewHostDelegate::GetPrintingDelegate() { return NULL; } RenderViewHostDelegate::FavIcon* RenderViewHostDelegate::GetFavIconDelegate() { return NULL; } RenderViewHostDelegate::BookmarkDrag* RenderViewHostDelegate::GetBookmarkDragDelegate() { return NULL; } RenderViewHostDelegate::SSL* RenderViewHostDelegate::GetSSLDelegate() { return NULL; } RenderViewHostDelegate::FileSelect* RenderViewHostDelegate::GetFileSelectDelegate() { return NULL; } AutomationResourceRoutingDelegate* RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { return NULL; } bool RenderViewHostDelegate::OnMessageReceived(const IPC::Message& message) { return false; } const GURL& RenderViewHostDelegate::GetURL() const { return GURL::EmptyGURL(); } TabContents* RenderViewHostDelegate::GetAsTabContents() { return NULL; } BackgroundContents* RenderViewHostDelegate::GetAsBackgroundContents() { return NULL; } GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { return GURL(); } WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { return WebPreferences(); } bool RenderViewHostDelegate::IsExternalTabContainer() const { return false; }