| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 blink::WebRTCPeerConnectionHandlerClient* client) { | 62 blink::WebRTCPeerConnectionHandlerClient* client) { |
| 63 return nullptr; | 63 return nullptr; |
| 64 } | 64 } |
| 65 | 65 |
| 66 blink::WebMIDIAccessor* | 66 blink::WebMIDIAccessor* |
| 67 ContentRendererClient::OverrideCreateMIDIAccessor( | 67 ContentRendererClient::OverrideCreateMIDIAccessor( |
| 68 blink::WebMIDIAccessorClient* client) { | 68 blink::WebMIDIAccessorClient* client) { |
| 69 return nullptr; | 69 return nullptr; |
| 70 } | 70 } |
| 71 | 71 |
| 72 blink::WebAudioDevice* | 72 blink::WebAudioDevice* ContentRendererClient::OverrideCreateAudioDevice() { |
| 73 ContentRendererClient::OverrideCreateAudioDevice( | |
| 74 double sample_rate) { | |
| 75 return nullptr; | 73 return nullptr; |
| 76 } | 74 } |
| 77 | 75 |
| 78 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() { | 76 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() { |
| 79 return nullptr; | 77 return nullptr; |
| 80 } | 78 } |
| 81 | 79 |
| 82 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { | 80 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { |
| 83 return nullptr; | 81 return nullptr; |
| 84 } | 82 } |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 230 |
| 233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 231 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 234 return true; | 232 return true; |
| 235 } | 233 } |
| 236 | 234 |
| 237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 235 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 238 return GURL(); | 236 return GURL(); |
| 239 } | 237 } |
| 240 | 238 |
| 241 } // namespace content | 239 } // namespace content |
| OLD | NEW |