OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/gfx/rect.h" | 7 #include "base/gfx/rect.h" |
8 #include "chrome/common/renderer_preferences.h" | 8 #include "chrome/common/renderer_preferences.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 #include "webkit/glue/webpreferences.h" | 10 #include "webkit/glue/webpreferences.h" |
(...skipping 29 matching lines...) Loading... |
40 RenderViewHostDelegate::FavIcon* | 40 RenderViewHostDelegate::FavIcon* |
41 RenderViewHostDelegate::GetFavIconDelegate() { | 41 RenderViewHostDelegate::GetFavIconDelegate() { |
42 return NULL; | 42 return NULL; |
43 } | 43 } |
44 | 44 |
45 RenderViewHostDelegate::FormFieldHistory* | 45 RenderViewHostDelegate::FormFieldHistory* |
46 RenderViewHostDelegate::GetFormFieldHistoryDelegate() { | 46 RenderViewHostDelegate::GetFormFieldHistoryDelegate() { |
47 return NULL; | 47 return NULL; |
48 } | 48 } |
49 | 49 |
| 50 RenderViewHostDelegate::AutoFill* |
| 51 RenderViewHostDelegate::GetAutoFillDelegate() { |
| 52 return NULL; |
| 53 } |
| 54 |
50 const GURL& RenderViewHostDelegate::GetURL() const { | 55 const GURL& RenderViewHostDelegate::GetURL() const { |
51 return GURL::EmptyGURL(); | 56 return GURL::EmptyGURL(); |
52 } | 57 } |
53 | 58 |
54 TabContents* RenderViewHostDelegate::GetAsTabContents() { | 59 TabContents* RenderViewHostDelegate::GetAsTabContents() { |
55 return NULL; | 60 return NULL; |
56 } | 61 } |
57 | 62 |
58 void RenderViewHostDelegate::AddBlockedNotice(const GURL& url, | 63 void RenderViewHostDelegate::AddBlockedNotice(const GURL& url, |
59 const string16& reason) { | 64 const string16& reason) { |
(...skipping 15 matching lines...) Loading... |
75 return true; | 80 return true; |
76 } | 81 } |
77 | 82 |
78 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | 83 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { |
79 return gfx::Rect(); | 84 return gfx::Rect(); |
80 } | 85 } |
81 | 86 |
82 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 87 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
83 return false; | 88 return false; |
84 } | 89 } |
OLD | NEW |