| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 RenderViewHostDelegate::AutoFill* | 61 RenderViewHostDelegate::AutoFill* |
| 62 RenderViewHostDelegate::GetAutoFillDelegate() { | 62 RenderViewHostDelegate::GetAutoFillDelegate() { |
| 63 return NULL; | 63 return NULL; |
| 64 } | 64 } |
| 65 | 65 |
| 66 RenderViewHostDelegate::BookmarkDrag* | 66 RenderViewHostDelegate::BookmarkDrag* |
| 67 RenderViewHostDelegate::GetBookmarkDragDelegate() { | 67 RenderViewHostDelegate::GetBookmarkDragDelegate() { |
| 68 return NULL; | 68 return NULL; |
| 69 } | 69 } |
| 70 | 70 |
| 71 RenderViewHostDelegate::BlockedPlugin* |
| 72 RenderViewHostDelegate::GetBlockedPluginDelegate() { |
| 73 return NULL; |
| 74 } |
| 75 |
| 71 AutomationResourceRoutingDelegate* | 76 AutomationResourceRoutingDelegate* |
| 72 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { | 77 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { |
| 73 return NULL; | 78 return NULL; |
| 74 } | 79 } |
| 75 | 80 |
| 76 const GURL& RenderViewHostDelegate::GetURL() const { | 81 const GURL& RenderViewHostDelegate::GetURL() const { |
| 77 return GURL::EmptyGURL(); | 82 return GURL::EmptyGURL(); |
| 78 } | 83 } |
| 79 | 84 |
| 80 TabContents* RenderViewHostDelegate::GetAsTabContents() { | 85 TabContents* RenderViewHostDelegate::GetAsTabContents() { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 94 return WebPreferences(); | 99 return WebPreferences(); |
| 95 } | 100 } |
| 96 | 101 |
| 97 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | 102 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { |
| 98 return gfx::Rect(); | 103 return gfx::Rect(); |
| 99 } | 104 } |
| 100 | 105 |
| 101 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 106 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
| 102 return false; | 107 return false; |
| 103 } | 108 } |
| OLD | NEW |