| OLD | NEW |
| 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 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 bool RenderFrameHostDelegate::OnMessageReceived( | 9 bool RenderFrameHostDelegate::OnMessageReceived( |
| 10 RenderFrameHost* render_view_host, | 10 RenderFrameHost* render_view_host, |
| 11 const IPC::Message& message) { | 11 const IPC::Message& message) { |
| 12 return false; | 12 return false; |
| 13 } | 13 } |
| 14 | 14 |
| 15 WebContents* RenderFrameHostDelegate::GetAsWebContents() { |
| 16 return NULL; |
| 17 } |
| 18 |
| 15 } // namespace content | 19 } // namespace content |
| OLD | NEW |