Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/public/renderer/content_renderer_client.h" | 5 #include "content/public/renderer/content_renderer_client.h" |
| 6 | 6 |
| 7 #include "content/public/renderer/media_stream_renderer_factory.h" | 7 #include "content/public/renderer/media_stream_renderer_factory.h" |
| 8 #include "media/base/renderer_factory.h" | 8 #include "media/base/renderer_factory.h" |
| 9 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" | 9 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" |
| 10 | 10 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 218 const GURL& original_url) { | 218 const GURL& original_url) { |
| 219 return nullptr; | 219 return nullptr; |
| 220 } | 220 } |
| 221 | 221 |
| 222 std::unique_ptr<blink::WebAppBannerClient> | 222 std::unique_ptr<blink::WebAppBannerClient> |
| 223 ContentRendererClient::CreateAppBannerClient(RenderFrame* render_frame) { | 223 ContentRendererClient::CreateAppBannerClient(RenderFrame* render_frame) { |
| 224 return nullptr; | 224 return nullptr; |
| 225 } | 225 } |
| 226 | 226 |
| 227 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 227 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 228 | |
|
mlamouri (slow - plz ping)
2016/07/20 13:22:02
nit: empty line.
kdsilva
2016/07/21 13:59:46
Done.
| |
| 228 return true; | 229 return true; |
| 229 } | 230 } |
| 230 | 231 |
| 232 bool ContentRendererClient::OverrideEmbedInfo(std::string* url) { | |
| 233 return false; | |
| 234 } | |
| 235 | |
| 231 } // namespace content | 236 } // namespace content |
| OLD | NEW |