| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "content/browser/frame_host/render_frame_host_delegate.h" | 10 #include "content/browser/frame_host/render_frame_host_delegate.h" |
| 11 #include "ipc/ipc_message.h" | 11 #include "ipc/ipc_message.h" |
| 12 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 bool RenderFrameHostDelegate::OnMessageReceived( | 17 bool RenderFrameHostDelegate::OnMessageReceived( |
| 18 RenderFrameHost* render_view_host, | 18 RenderFrameHostImpl* render_frame_host, |
| 19 const IPC::Message& message) { | 19 const IPC::Message& message) { |
| 20 return false; | 20 return false; |
| 21 } | 21 } |
| 22 | 22 |
| 23 const GURL& RenderFrameHostDelegate::GetMainFrameLastCommittedURL() const { | 23 const GURL& RenderFrameHostDelegate::GetMainFrameLastCommittedURL() const { |
| 24 return GURL::EmptyGURL(); | 24 return GURL::EmptyGURL(); |
| 25 } | 25 } |
| 26 | 26 |
| 27 bool RenderFrameHostDelegate::DidAddMessageToConsole( | 27 bool RenderFrameHostDelegate::DidAddMessageToConsole( |
| 28 int32_t level, | 28 int32_t level, |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 SiteInstance* source_site_instance) const { | 87 SiteInstance* source_site_instance) const { |
| 88 return false; | 88 return false; |
| 89 } | 89 } |
| 90 | 90 |
| 91 std::unique_ptr<WebUIImpl> | 91 std::unique_ptr<WebUIImpl> |
| 92 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) { | 92 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) { |
| 93 return nullptr; | 93 return nullptr; |
| 94 } | 94 } |
| 95 | 95 |
| 96 } // namespace content | 96 } // namespace content |
| OLD | NEW |