| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 5 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
| 6 | 6 |
| 7 #include "base/singleton.h" | 7 #include "base/singleton.h" |
| 8 #include "chrome/common/render_messages.h" | 8 #include "chrome/common/render_messages.h" |
| 9 #include "chrome/common/render_messages_params.h" | 9 #include "chrome/common/render_messages_params.h" |
| 10 #include "chrome/common/renderer_preferences.h" | 10 #include "chrome/common/renderer_preferences.h" |
| 11 #include "gfx/rect.h" | 11 #include "gfx/rect.h" |
| 12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 13 #include "webkit/glue/webpreferences.h" | 13 #include "webkit/glue/webpreferences.h" |
| 14 | 14 |
| 15 #if defined(TOOLKIT_USES_GTK) | 15 #if defined(TOOLKIT_USES_GTK) |
| 16 #include "chrome/browser/ui/gtk/gtk_util.h" | 16 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 RenderViewHostDelegate::View* RenderViewHostDelegate::GetViewDelegate() { | 19 RenderViewHostDelegate::View* RenderViewHostDelegate::GetViewDelegate() { |
| 20 return NULL; | 20 return NULL; |
| 21 } | 21 } |
| 22 | 22 |
| 23 RenderViewHostDelegate::RendererManagement* | 23 RenderViewHostDelegate::RendererManagement* |
| 24 RenderViewHostDelegate::GetRendererManagementDelegate() { | 24 RenderViewHostDelegate::GetRendererManagementDelegate() { |
| 25 return NULL; | 25 return NULL; |
| 26 } | 26 } |
| 27 | 27 |
| 28 RenderViewHostDelegate::BrowserIntegration* | |
| 29 RenderViewHostDelegate::GetBrowserIntegrationDelegate() { | |
| 30 return NULL; | |
| 31 } | |
| 32 | |
| 33 | |
| 34 RenderViewHostDelegate::ContentSettings* | 28 RenderViewHostDelegate::ContentSettings* |
| 35 RenderViewHostDelegate::GetContentSettingsDelegate() { | 29 RenderViewHostDelegate::GetContentSettingsDelegate() { |
| 36 return NULL; | 30 return NULL; |
| 37 } | 31 } |
| 38 | 32 |
| 39 RenderViewHostDelegate::Save* RenderViewHostDelegate::GetSaveDelegate() { | 33 RenderViewHostDelegate::Save* RenderViewHostDelegate::GetSaveDelegate() { |
| 40 return NULL; | 34 return NULL; |
| 41 } | 35 } |
| 42 | 36 |
| 43 RenderViewHostDelegate::Printing* | 37 RenderViewHostDelegate::Printing* |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 return GURL(); | 84 return GURL(); |
| 91 } | 85 } |
| 92 | 86 |
| 93 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { | 87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { |
| 94 return WebPreferences(); | 88 return WebPreferences(); |
| 95 } | 89 } |
| 96 | 90 |
| 97 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 91 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
| 98 return false; | 92 return false; |
| 99 } | 93 } |
| OLD | NEW |