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/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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 } | 98 } |
99 | 99 |
100 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { | 100 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { |
101 return GURL(); | 101 return GURL(); |
102 } | 102 } |
103 | 103 |
104 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { | 104 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { |
105 return WebPreferences(); | 105 return WebPreferences(); |
106 } | 106 } |
107 | 107 |
108 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | |
109 return gfx::Rect(); | |
110 } | |
111 | |
112 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 108 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
113 return false; | 109 return false; |
114 } | 110 } |
OLD | NEW |