| 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 "cc/blimp/remote_compositor_bridge.h" | 7 #include "cc/blimp/remote_compositor_bridge.h" |
| 8 #include "content/public/renderer/media_stream_renderer_factory.h" | 8 #include "content/public/renderer/media_stream_renderer_factory.h" |
| 9 #include "media/base/renderer_factory.h" | 9 #include "media/base/renderer_factory.h" |
| 10 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" | |
| 11 #include "ui/gfx/icc_profile.h" | 10 #include "ui/gfx/icc_profile.h" |
| 12 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 13 | 12 |
| 14 namespace content { | 13 namespace content { |
| 15 | 14 |
| 16 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { | 15 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { |
| 17 return nullptr; | 16 return nullptr; |
| 18 } | 17 } |
| 19 | 18 |
| 20 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { | 19 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 return false; | 224 return false; |
| 226 } | 225 } |
| 227 | 226 |
| 228 BrowserPluginDelegate* ContentRendererClient::CreateBrowserPluginDelegate( | 227 BrowserPluginDelegate* ContentRendererClient::CreateBrowserPluginDelegate( |
| 229 RenderFrame* render_frame, | 228 RenderFrame* render_frame, |
| 230 const std::string& mime_type, | 229 const std::string& mime_type, |
| 231 const GURL& original_url) { | 230 const GURL& original_url) { |
| 232 return nullptr; | 231 return nullptr; |
| 233 } | 232 } |
| 234 | 233 |
| 235 std::unique_ptr<blink::WebAppBannerClient> | |
| 236 ContentRendererClient::CreateAppBannerClient(RenderFrame* render_frame) { | |
| 237 return nullptr; | |
| 238 } | |
| 239 | |
| 240 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 234 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 241 return true; | 235 return true; |
| 242 } | 236 } |
| 243 | 237 |
| 244 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 238 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 245 return GURL(); | 239 return GURL(); |
| 246 } | 240 } |
| 247 | 241 |
| 248 } // namespace content | 242 } // namespace content |
| OLD | NEW |