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

Unified Diff: content/renderer/blink_platform_audio_hardware_browsertest.cc

Issue 2626023006: Check that render-frame is valid before returning audio params in Blink. (Closed)
Patch Set: Add test Created 3 years, 11 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
« no previous file with comments | « no previous file | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/blink_platform_audio_hardware_browsertest.cc
diff --git a/content/renderer/blink_platform_audio_hardware_browsertest.cc b/content/renderer/blink_platform_audio_hardware_browsertest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..634525cf9429dd7baec52f2b68db3643f012e693
--- /dev/null
+++ b/content/renderer/blink_platform_audio_hardware_browsertest.cc
@@ -0,0 +1,27 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/public/test/render_view_test.h"
+#include "third_party/WebKit/public/platform/Platform.h"
+
+namespace content {
+
+class BlinkPlatformAudioHardwareTest : public RenderViewTest {
+ protected:
+ void SetUp() override { RenderViewTest::SetUp(); }
+};
+
+// Test that calling audioHardware functions from blink::Platform without a v8
+// context returns valid values.
+TEST_F(BlinkPlatformAudioHardwareTest, AudioHardwareFunctionsNoV8) {
+ blink::Platform* blink_platform = blink::Platform::current();
+ size_t buffer_size = blink_platform->audioHardwareBufferSize();
+ EXPECT_GT(buffer_size, 0u);
+ unsigned channels = blink_platform->audioHardwareOutputChannels();
+ EXPECT_GT(channels, 0u);
+ double sample_rate = blink_platform->audioHardwareSampleRate();
+ EXPECT_GT(sample_rate, 0.0);
+}
+
+} // namespace content
« no previous file with comments | « no previous file | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698