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

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

Issue 2750543003: Support AudioContextOptions latencyHint as double. (Closed)
Patch Set: No max value clamping in AudioLatency. 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 221
221 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { 222 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) {
222 return GURL(); 223 return GURL();
223 } 224 }
224 225
225 bool ContentRendererClient::AllowMediaSuspend() { 226 bool ContentRendererClient::AllowMediaSuspend() {
226 return true; 227 return true;
227 } 228 }
228 229
229 } // namespace content 230 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698