| 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" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 device::GeolocationServiceContext* | 75 device::GeolocationServiceContext* |
| 76 RenderFrameHostDelegate::GetGeolocationServiceContext() { | 76 RenderFrameHostDelegate::GetGeolocationServiceContext() { |
| 77 return nullptr; | 77 return nullptr; |
| 78 } | 78 } |
| 79 | 79 |
| 80 device::WakeLockServiceContext* | 80 device::WakeLockServiceContext* |
| 81 RenderFrameHostDelegate::GetWakeLockServiceContext() { | 81 RenderFrameHostDelegate::GetWakeLockServiceContext() { |
| 82 return nullptr; | 82 return nullptr; |
| 83 } | 83 } |
| 84 | 84 |
| 85 ScreenOrientationProvider* | |
| 86 RenderFrameHostDelegate::GetScreenOrientationProvider() { | |
| 87 return nullptr; | |
| 88 } | |
| 89 | |
| 90 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( | 85 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( |
| 91 RenderFrameHost* target_rfh, | 86 RenderFrameHost* target_rfh, |
| 92 SiteInstance* source_site_instance) const { | 87 SiteInstance* source_site_instance) const { |
| 93 return false; | 88 return false; |
| 94 } | 89 } |
| 95 | 90 |
| 96 std::unique_ptr<WebUIImpl> | 91 std::unique_ptr<WebUIImpl> |
| 97 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) { | 92 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) { |
| 98 return nullptr; | 93 return nullptr; |
| 99 } | 94 } |
| 100 | 95 |
| 101 } // namespace content | 96 } // namespace content |
| OLD | NEW |