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

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

Issue 10441019: Move render_view_host_delegate.h out of content/public. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 months 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
« no previous file with comments | « content/public/browser/render_view_host_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/public/browser/render_view_host_delegate.h"
6
7 #include "googleurl/src/gurl.h"
8 #include "webkit/glue/webpreferences.h"
9
10 namespace content {
11
12 RenderViewHostDelegateView* RenderViewHostDelegate::GetDelegateView() {
13 return NULL;
14 }
15
16 RenderViewHostDelegate::RendererManagement*
17 RenderViewHostDelegate::GetRendererManagementDelegate() {
18 return NULL;
19 }
20
21 bool RenderViewHostDelegate::OnMessageReceived(const IPC::Message& message) {
22 return false;
23 }
24
25 const GURL& RenderViewHostDelegate::GetURL() const {
26 return GURL::EmptyGURL();
27 }
28
29 WebContents* RenderViewHostDelegate::GetAsWebContents() {
30 return NULL;
31 }
32
33 webkit_glue::WebPreferences RenderViewHostDelegate::GetWebkitPrefs() {
34 return webkit_glue::WebPreferences();
35 }
36
37 bool RenderViewHostDelegate::IsFullscreenForCurrentTab() const {
38 return false;
39 }
40
41 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/render_view_host_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698