Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(773)

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 2750543003: Support AudioContextOptions latencyHint as double. (Closed)
Patch Set: Refactor audiocontextoptions LayoutTest. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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* ContentRendererClient::OverrideCreateAudioDevice() { 71 blink::WebAudioDevice* ContentRendererClient::OverrideCreateAudioDevice(
72 const blink::WebAudioLatencyHint& latency_hint) {
72 return nullptr; 73 return nullptr;
73 } 74 }
74 75
75 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() { 76 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() {
76 return nullptr; 77 return nullptr;
77 } 78 }
78 79
79 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { 80 blink::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() {
80 return nullptr; 81 return nullptr;
81 } 82 }
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 std::unique_ptr<base::TaskScheduler::InitParams> 242 std::unique_ptr<base::TaskScheduler::InitParams>
242 ContentRendererClient::GetTaskSchedulerInitParams() { 243 ContentRendererClient::GetTaskSchedulerInitParams() {
243 return nullptr; 244 return nullptr;
244 } 245 }
245 246
246 bool ContentRendererClient::AllowMediaSuspend() { 247 bool ContentRendererClient::AllowMediaSuspend() {
247 return true; 248 return true;
248 } 249 }
249 250
250 } // namespace content 251 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/media/renderer_webaudiodevice_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698