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 "content/browser/frame_host/render_frame_host_delegate.h" | 9 #include "content/browser/frame_host/render_frame_host_delegate.h" |
10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 RenderFrameHostDelegate::GetGeolocationServiceContext() { | 65 RenderFrameHostDelegate::GetGeolocationServiceContext() { |
66 return NULL; | 66 return NULL; |
67 } | 67 } |
68 | 68 |
69 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( | 69 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( |
70 RenderFrameHost* target_rfh, | 70 RenderFrameHost* target_rfh, |
71 SiteInstance* source_site_instance) const { | 71 SiteInstance* source_site_instance) const { |
72 return false; | 72 return false; |
73 } | 73 } |
74 | 74 |
| 75 scoped_ptr<WebUIImpl> RenderFrameHostDelegate::CreateWebUIForRenderManager( |
| 76 const GURL& url) { |
| 77 return nullptr; |
| 78 } |
| 79 |
75 #if defined(OS_WIN) | 80 #if defined(OS_WIN) |
76 gfx::NativeViewAccessible | 81 gfx::NativeViewAccessible |
77 RenderFrameHostDelegate::GetParentNativeViewAccessible() { | 82 RenderFrameHostDelegate::GetParentNativeViewAccessible() { |
78 return NULL; | 83 return NULL; |
79 } | 84 } |
80 #endif // defined(OS_WIN) | 85 #endif // defined(OS_WIN) |
81 | 86 |
82 } // namespace content | 87 } // namespace content |
OLD | NEW |