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

Unified Diff: content/browser/renderer_host/media/audio_renderer_host_unittest.cc

Issue 2330393002: Change sync primitives ownership for audio rendering. (Closed)
Patch Set: Remove incorrect comment. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/audio_renderer_host_unittest.cc
diff --git a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
index de61c1f708671b667a4ba8e325588b159f9e6eaa..020d5389263f5c0b9a4f849cd0723a86494d45cd 100644
--- a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
+++ b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
@@ -109,6 +109,8 @@ class MockAudioRendererHost : public AudioRendererHost {
// This method is used to dispatch IPC messages to the renderer. We intercept
// these messages here and dispatch to our mock methods to verify the
// conversation between this object and the renderer.
+ // Note: this means that file descriptors won't be duplicated,
+ // leading to double-close errors from SyncSocket.
o1ka 2016/09/16 10:51:59 Can you file a bug and refer it here?
Max Morin 2016/09/16 12:46:15 Done.
virtual bool Send(IPC::Message* message) {
CHECK(message);

Powered by Google App Engine
This is Rietveld 408576698