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" |
(...skipping 12 matching lines...) Expand all Loading... |
23 RenderViewHostDelegate::RendererManagement* | 23 RenderViewHostDelegate::RendererManagement* |
24 RenderViewHostDelegate::GetRendererManagementDelegate() { | 24 RenderViewHostDelegate::GetRendererManagementDelegate() { |
25 return NULL; | 25 return NULL; |
26 } | 26 } |
27 | 27 |
28 RenderViewHostDelegate::ContentSettings* | 28 RenderViewHostDelegate::ContentSettings* |
29 RenderViewHostDelegate::GetContentSettingsDelegate() { | 29 RenderViewHostDelegate::GetContentSettingsDelegate() { |
30 return NULL; | 30 return NULL; |
31 } | 31 } |
32 | 32 |
33 RenderViewHostDelegate::Save* RenderViewHostDelegate::GetSaveDelegate() { | |
34 return NULL; | |
35 } | |
36 | |
37 RenderViewHostDelegate::Printing* | |
38 RenderViewHostDelegate::GetPrintingDelegate() { | |
39 return NULL; | |
40 } | |
41 | |
42 RenderViewHostDelegate::FavIcon* | |
43 RenderViewHostDelegate::GetFavIconDelegate() { | |
44 return NULL; | |
45 } | |
46 | |
47 RenderViewHostDelegate::BookmarkDrag* | 33 RenderViewHostDelegate::BookmarkDrag* |
48 RenderViewHostDelegate::GetBookmarkDragDelegate() { | 34 RenderViewHostDelegate::GetBookmarkDragDelegate() { |
49 return NULL; | 35 return NULL; |
50 } | 36 } |
51 | 37 |
52 RenderViewHostDelegate::SSL* | 38 RenderViewHostDelegate::SSL* |
53 RenderViewHostDelegate::GetSSLDelegate() { | 39 RenderViewHostDelegate::GetSSLDelegate() { |
54 return NULL; | 40 return NULL; |
55 } | 41 } |
56 | 42 |
57 RenderViewHostDelegate::FileSelect* | |
58 RenderViewHostDelegate::GetFileSelectDelegate() { | |
59 return NULL; | |
60 } | |
61 | |
62 AutomationResourceRoutingDelegate* | 43 AutomationResourceRoutingDelegate* |
63 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { | 44 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { |
64 return NULL; | 45 return NULL; |
65 } | 46 } |
66 | 47 |
67 bool RenderViewHostDelegate::OnMessageReceived(const IPC::Message& message) { | 48 bool RenderViewHostDelegate::OnMessageReceived(const IPC::Message& message) { |
68 return false; | 49 return false; |
69 } | 50 } |
70 | 51 |
71 const GURL& RenderViewHostDelegate::GetURL() const { | 52 const GURL& RenderViewHostDelegate::GetURL() const { |
(...skipping 12 matching lines...) Expand all Loading... |
84 return GURL(); | 65 return GURL(); |
85 } | 66 } |
86 | 67 |
87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { | 68 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { |
88 return WebPreferences(); | 69 return WebPreferences(); |
89 } | 70 } |
90 | 71 |
91 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 72 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
92 return false; | 73 return false; |
93 } | 74 } |
OLD | NEW |