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

Unified Diff: content/renderer/media/audio_renderer_impl_unittest.cc

Issue 8585002: Give base::SharedMemory::CreateAnonymous an executable flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/renderer/media/audio_renderer_impl_unittest.cc
diff --git a/content/renderer/media/audio_renderer_impl_unittest.cc b/content/renderer/media/audio_renderer_impl_unittest.cc
index 89b6fdd3836964815f86fdc6b54352d0c632605e..14b3e465139cfacc09ae235d7ce25ab2bf29a10a 100644
--- a/content/renderer/media/audio_renderer_impl_unittest.cc
+++ b/content/renderer/media/audio_renderer_impl_unittest.cc
@@ -150,7 +150,7 @@ class AudioRendererImplTest
mock_process_->set_main_thread(render_thread_);
// Create temporary shared memory.
- CHECK(shared_mem_.CreateAnonymous(kSize));
+ CHECK(shared_mem_.CreateAnonymous(kSize, false));
// Setup expectations for initialization.
decoder_ = new media::MockAudioDecoder();

Powered by Google App Engine
This is Rietveld 408576698