| 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 "content/browser/renderer_host/render_view_host_delegate.h" | 5 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | |
| 8 #include "content/public/common/renderer_preferences.h" | |
| 9 #include "googleurl/src/gurl.h" | 7 #include "googleurl/src/gurl.h" |
| 10 #include "ui/gfx/rect.h" | |
| 11 #include "webkit/glue/webpreferences.h" | 8 #include "webkit/glue/webpreferences.h" |
| 12 | 9 |
| 13 RenderViewHostDelegate::View* RenderViewHostDelegate::GetViewDelegate() { | 10 RenderViewHostDelegate::View* RenderViewHostDelegate::GetViewDelegate() { |
| 14 return NULL; | 11 return NULL; |
| 15 } | 12 } |
| 16 | 13 |
| 17 RenderViewHostDelegate::RendererManagement* | 14 RenderViewHostDelegate::RendererManagement* |
| 18 RenderViewHostDelegate::GetRendererManagementDelegate() { | 15 RenderViewHostDelegate::GetRendererManagementDelegate() { |
| 19 return NULL; | 16 return NULL; |
| 20 } | 17 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 } | 33 } |
| 37 | 34 |
| 38 bool RenderViewHostDelegate::PreHandleKeyboardEvent( | 35 bool RenderViewHostDelegate::PreHandleKeyboardEvent( |
| 39 const NativeWebKeyboardEvent& event, bool* is_keyboard_shortcut) { | 36 const NativeWebKeyboardEvent& event, bool* is_keyboard_shortcut) { |
| 40 return false; | 37 return false; |
| 41 } | 38 } |
| 42 | 39 |
| 43 bool RenderViewHostDelegate::IsFullscreenForCurrentTab() const { | 40 bool RenderViewHostDelegate::IsFullscreenForCurrentTab() const { |
| 44 return false; | 41 return false; |
| 45 } | 42 } |
| OLD | NEW |