| 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 #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 |
| OLD | NEW |