| 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/renderer_preferences.h" | 8 #include "chrome/common/renderer_preferences.h" |
| 9 #include "gfx/rect.h" | 9 #include "gfx/rect.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 RenderViewHostDelegate::AutoFill* | 60 RenderViewHostDelegate::AutoFill* |
| 61 RenderViewHostDelegate::GetAutoFillDelegate() { | 61 RenderViewHostDelegate::GetAutoFillDelegate() { |
| 62 return NULL; | 62 return NULL; |
| 63 } | 63 } |
| 64 | 64 |
| 65 RenderViewHostDelegate::BookmarkDrag* | 65 RenderViewHostDelegate::BookmarkDrag* |
| 66 RenderViewHostDelegate::GetBookmarkDragDelegate() { | 66 RenderViewHostDelegate::GetBookmarkDragDelegate() { |
| 67 return NULL; | 67 return NULL; |
| 68 } | 68 } |
| 69 | 69 |
| 70 RenderViewHostDelegate::SSL* |
| 71 RenderViewHostDelegate::GetSSLDelegate() { |
| 72 return NULL; |
| 73 } |
| 74 |
| 70 AutomationResourceRoutingDelegate* | 75 AutomationResourceRoutingDelegate* |
| 71 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { | 76 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { |
| 72 return NULL; | 77 return NULL; |
| 73 } | 78 } |
| 74 | 79 |
| 75 const GURL& RenderViewHostDelegate::GetURL() const { | 80 const GURL& RenderViewHostDelegate::GetURL() const { |
| 76 return GURL::EmptyGURL(); | 81 return GURL::EmptyGURL(); |
| 77 } | 82 } |
| 78 | 83 |
| 79 TabContents* RenderViewHostDelegate::GetAsTabContents() { | 84 TabContents* RenderViewHostDelegate::GetAsTabContents() { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 92 return true; | 97 return true; |
| 93 } | 98 } |
| 94 | 99 |
| 95 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | 100 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { |
| 96 return gfx::Rect(); | 101 return gfx::Rect(); |
| 97 } | 102 } |
| 98 | 103 |
| 99 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 104 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
| 100 return false; | 105 return false; |
| 101 } | 106 } |
| OLD | NEW |