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/WebAudioDevice.h" | 9 #include "third_party/WebKit/public/platform/WebAudioDevice.h" |
10 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 10 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
11 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" | 11 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" |
12 #include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h" | 12 #include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h" |
13 #include "third_party/WebKit/public/platform/modules/webmidi/WebMIDIAccessor.h" | 13 #include "third_party/WebKit/public/platform/modules/webmidi/WebMIDIAccessor.h" |
| 14 #include "third_party/WebKit/public/web/WebMediaIPH.h" |
14 #include "ui/gfx/icc_profile.h" | 15 #include "ui/gfx/icc_profile.h" |
15 #include "url/gurl.h" | 16 #include "url/gurl.h" |
16 | 17 |
17 namespace content { | 18 namespace content { |
18 | 19 |
19 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { | 20 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { |
20 return nullptr; | 21 return nullptr; |
21 } | 22 } |
22 | 23 |
23 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { | 24 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 | 251 |
251 std::unique_ptr<base::TaskScheduler::InitParams> | 252 std::unique_ptr<base::TaskScheduler::InitParams> |
252 ContentRendererClient::GetTaskSchedulerInitParams() { | 253 ContentRendererClient::GetTaskSchedulerInitParams() { |
253 return nullptr; | 254 return nullptr; |
254 } | 255 } |
255 | 256 |
256 bool ContentRendererClient::AllowMediaSuspend() { | 257 bool ContentRendererClient::AllowMediaSuspend() { |
257 return true; | 258 return true; |
258 } | 259 } |
259 | 260 |
| 261 std::unique_ptr<blink::WebMediaIPH> ContentRendererClient::CreateWebMediaIPH( |
| 262 content::RenderFrame* render_frame) { |
| 263 return nullptr; |
| 264 } |
| 265 |
260 } // namespace content | 266 } // namespace content |
OLD | NEW |