| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/renderer_preferences.h" | 9 #include "chrome/common/renderer_preferences.h" |
| 10 #include "gfx/rect.h" | 10 #include "gfx/rect.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 RenderViewHostDelegate::BlockedPlugin* | 71 RenderViewHostDelegate::BlockedPlugin* |
| 72 RenderViewHostDelegate::GetBlockedPluginDelegate() { | 72 RenderViewHostDelegate::GetBlockedPluginDelegate() { |
| 73 return NULL; | 73 return NULL; |
| 74 } | 74 } |
| 75 | 75 |
| 76 RenderViewHostDelegate::SSL* | 76 RenderViewHostDelegate::SSL* |
| 77 RenderViewHostDelegate::GetSSLDelegate() { | 77 RenderViewHostDelegate::GetSSLDelegate() { |
| 78 return NULL; | 78 return NULL; |
| 79 } | 79 } |
| 80 | 80 |
| 81 RenderViewHostDelegate::FileSelect* |
| 82 RenderViewHostDelegate::GetFileSelectDelegate() { |
| 83 return NULL; |
| 84 } |
| 85 |
| 81 AutomationResourceRoutingDelegate* | 86 AutomationResourceRoutingDelegate* |
| 82 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { | 87 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { |
| 83 return NULL; | 88 return NULL; |
| 84 } | 89 } |
| 85 | 90 |
| 86 const GURL& RenderViewHostDelegate::GetURL() const { | 91 const GURL& RenderViewHostDelegate::GetURL() const { |
| 87 return GURL::EmptyGURL(); | 92 return GURL::EmptyGURL(); |
| 88 } | 93 } |
| 89 | 94 |
| 90 TabContents* RenderViewHostDelegate::GetAsTabContents() { | 95 TabContents* RenderViewHostDelegate::GetAsTabContents() { |
| 91 return NULL; | 96 return NULL; |
| 92 } | 97 } |
| 93 | 98 |
| 94 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { | 99 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { |
| 95 return GURL(); | 100 return GURL(); |
| 96 } | 101 } |
| 97 | 102 |
| 98 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { | 103 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { |
| 99 return WebPreferences(); | 104 return WebPreferences(); |
| 100 } | 105 } |
| 101 | 106 |
| 102 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | 107 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { |
| 103 return gfx::Rect(); | 108 return gfx::Rect(); |
| 104 } | 109 } |
| 105 | 110 |
| 106 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 111 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
| 107 return false; | 112 return false; |
| 108 } | 113 } |
| OLD | NEW |