| 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 "ui/gfx/icc_profile.h" | 10 #include "ui/gfx/icc_profile.h" |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 return nullptr; | 178 return nullptr; |
| 179 } | 179 } |
| 180 | 180 |
| 181 cc::ImageSerializationProcessor* | 181 cc::ImageSerializationProcessor* |
| 182 ContentRendererClient::GetImageSerializationProcessor() { | 182 ContentRendererClient::GetImageSerializationProcessor() { |
| 183 return nullptr; | 183 return nullptr; |
| 184 } | 184 } |
| 185 | 185 |
| 186 std::unique_ptr<cc::RemoteCompositorBridge> | 186 std::unique_ptr<cc::RemoteCompositorBridge> |
| 187 ContentRendererClient::CreateRemoteCompositorBridge( | 187 ContentRendererClient::CreateRemoteCompositorBridge( |
| 188 cc::RemoteProtoChannel* remote_proto_channel, | 188 RemoteProtoChannel* remote_proto_channel, |
| 189 scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner) { | 189 scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner) { |
| 190 return nullptr; | 190 return nullptr; |
| 191 } | 191 } |
| 192 | 192 |
| 193 std::unique_ptr<gfx::ICCProfile> | 193 std::unique_ptr<gfx::ICCProfile> |
| 194 ContentRendererClient::GetImageDecodeColorProfile() { | 194 ContentRendererClient::GetImageDecodeColorProfile() { |
| 195 return nullptr; | 195 return nullptr; |
| 196 } | 196 } |
| 197 | 197 |
| 198 bool ContentRendererClient::ShouldReportDetailedMessageForSource( | 198 bool ContentRendererClient::ShouldReportDetailedMessageForSource( |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 232 |
| 233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 234 return true; | 234 return true; |
| 235 } | 235 } |
| 236 | 236 |
| 237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 238 return GURL(); | 238 return GURL(); |
| 239 } | 239 } |
| 240 | 240 |
| 241 } // namespace content | 241 } // namespace content |
| OLD | NEW |