| 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" | |
| 8 #include "content/public/renderer/media_stream_renderer_factory.h" | 7 #include "content/public/renderer/media_stream_renderer_factory.h" |
| 9 #include "media/base/renderer_factory.h" | 8 #include "media/base/renderer_factory.h" |
| 10 #include "ui/gfx/icc_profile.h" | 9 #include "ui/gfx/icc_profile.h" |
| 11 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| 12 | 11 |
| 13 namespace content { | 12 namespace content { |
| 14 | 13 |
| 15 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { | 14 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { |
| 16 return nullptr; | 15 return nullptr; |
| 17 } | 16 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 169 } |
| 171 | 170 |
| 172 void ContentRendererClient::AddSupportedKeySystems( | 171 void ContentRendererClient::AddSupportedKeySystems( |
| 173 std::vector<std::unique_ptr<media::KeySystemProperties>>* key_systems) {} | 172 std::vector<std::unique_ptr<media::KeySystemProperties>>* key_systems) {} |
| 174 | 173 |
| 175 std::unique_ptr<MediaStreamRendererFactory> | 174 std::unique_ptr<MediaStreamRendererFactory> |
| 176 ContentRendererClient::CreateMediaStreamRendererFactory() { | 175 ContentRendererClient::CreateMediaStreamRendererFactory() { |
| 177 return nullptr; | 176 return nullptr; |
| 178 } | 177 } |
| 179 | 178 |
| 180 cc::ImageSerializationProcessor* | |
| 181 ContentRendererClient::GetImageSerializationProcessor() { | |
| 182 return nullptr; | |
| 183 } | |
| 184 | |
| 185 std::unique_ptr<cc::RemoteCompositorBridge> | |
| 186 ContentRendererClient::CreateRemoteCompositorBridge( | |
| 187 RemoteProtoChannel* remote_proto_channel, | |
| 188 scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner) { | |
| 189 return nullptr; | |
| 190 } | |
| 191 | |
| 192 std::unique_ptr<gfx::ICCProfile> | 179 std::unique_ptr<gfx::ICCProfile> |
| 193 ContentRendererClient::GetImageDecodeColorProfile() { | 180 ContentRendererClient::GetImageDecodeColorProfile() { |
| 194 return nullptr; | 181 return nullptr; |
| 195 } | 182 } |
| 196 | 183 |
| 197 bool ContentRendererClient::ShouldReportDetailedMessageForSource( | 184 bool ContentRendererClient::ShouldReportDetailedMessageForSource( |
| 198 const base::string16& source) const { | 185 const base::string16& source) const { |
| 199 return false; | 186 return false; |
| 200 } | 187 } |
| 201 | 188 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 231 | 218 |
| 232 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 219 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 233 return true; | 220 return true; |
| 234 } | 221 } |
| 235 | 222 |
| 236 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 223 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 237 return GURL(); | 224 return GURL(); |
| 238 } | 225 } |
| 239 | 226 |
| 240 } // namespace content | 227 } // namespace content |
| OLD | NEW |