| 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 "ui/gfx/icc_profile.h" | 9 #include "ui/gfx/icc_profile.h" |
| 10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 blink::WebRTCPeerConnectionHandlerClient* client) { | 61 blink::WebRTCPeerConnectionHandlerClient* client) { |
| 62 return nullptr; | 62 return nullptr; |
| 63 } | 63 } |
| 64 | 64 |
| 65 blink::WebMIDIAccessor* | 65 blink::WebMIDIAccessor* |
| 66 ContentRendererClient::OverrideCreateMIDIAccessor( | 66 ContentRendererClient::OverrideCreateMIDIAccessor( |
| 67 blink::WebMIDIAccessorClient* client) { | 67 blink::WebMIDIAccessorClient* client) { |
| 68 return nullptr; | 68 return nullptr; |
| 69 } | 69 } |
| 70 | 70 |
| 71 blink::WebAudioDevice* | 71 blink::WebAudioDevice* ContentRendererClient::OverrideCreateAudioDevice() { |
| 72 ContentRendererClient::OverrideCreateAudioDevice( | |
| 73 double sample_rate) { | |
| 74 return nullptr; | 72 return nullptr; |
| 75 } | 73 } |
| 76 | 74 |
| 77 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() { | 75 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() { |
| 78 return nullptr; | 76 return nullptr; |
| 79 } | 77 } |
| 80 | 78 |
| 81 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { | 79 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { |
| 82 return nullptr; | 80 return nullptr; |
| 83 } | 81 } |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 220 |
| 223 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 221 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 224 return GURL(); | 222 return GURL(); |
| 225 } | 223 } |
| 226 | 224 |
| 227 bool ContentRendererClient::AllowMediaSuspend() { | 225 bool ContentRendererClient::AllowMediaSuspend() { |
| 228 return true; | 226 return true; |
| 229 } | 227 } |
| 230 | 228 |
| 231 } // namespace content | 229 } // namespace content |
| OLD | NEW |