| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 } | 81 } |
| 82 | 82 |
| 83 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { | 83 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { |
| 84 return GURL(); | 84 return GURL(); |
| 85 } | 85 } |
| 86 | 86 |
| 87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { | 87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { |
| 88 return WebPreferences(); | 88 return WebPreferences(); |
| 89 } | 89 } |
| 90 | 90 |
| 91 bool RenderViewHostDelegate::CanBlur() const { |
| 92 return true; |
| 93 } |
| 94 |
| 91 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { | 95 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { |
| 92 return gfx::Rect(); | 96 return gfx::Rect(); |
| 93 } | 97 } |
| 94 | 98 |
| 95 bool RenderViewHostDelegate::IsExternalTabContainer() const { | 99 bool RenderViewHostDelegate::IsExternalTabContainer() const { |
| 96 return false; | 100 return false; |
| 97 } | 101 } |
| OLD | NEW |