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

Unified Diff: chrome/browser/renderer_host/render_view_host_delegate.cc

Issue 6532073: Move core pieces of browser\renderer_host to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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: chrome/browser/renderer_host/render_view_host_delegate.cc
===================================================================
--- chrome/browser/renderer_host/render_view_host_delegate.cc (revision 75488)
+++ chrome/browser/renderer_host/render_view_host_delegate.cc (working copy)
@@ -1,74 +0,0 @@
-// 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 "googleurl/src/gurl.h"
-#include "ui/gfx/rect.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::BookmarkDrag*
-RenderViewHostDelegate::GetBookmarkDragDelegate() {
- return NULL;
-}
-
-RenderViewHostDelegate::SSL*
-RenderViewHostDelegate::GetSSLDelegate() {
- 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;
-}

Powered by Google App Engine
This is Rietveld 408576698