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

Side by Side Diff: content/browser/frame_host/render_frame_host_delegate.cc

Issue 104833006: Switch ContentSettingsObserver to be a RenderFrameObserver instead of a RenderViewObserver (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/frame_host/render_frame_host_delegate.h" 5 #include "content/browser/frame_host/render_frame_host_delegate.h"
6 6
7 #include <stddef.h>
8
7 namespace content { 9 namespace content {
8 10
9 bool RenderFrameHostDelegate::OnMessageReceived( 11 bool RenderFrameHostDelegate::OnMessageReceived(
10 RenderFrameHost* render_view_host, 12 RenderFrameHost* render_view_host,
11 const IPC::Message& message) { 13 const IPC::Message& message) {
12 return false; 14 return false;
13 } 15 }
14 16
17 WebContents* RenderFrameHostDelegate::GetAsWebContents() {
18 return NULL;
19 }
20
15 } // namespace content 21 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698