Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: content/browser/renderer_host/render_view_host_delegate.cc

Issue 8760008: Cleanup: Remove some cruft from RenderViewHostDelegate. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698