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

Unified Diff: content/test/webrtc_audio_device_test.h

Issue 194813002: Removing WebRTCAudioDeviceTest test suite (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: xians@ Created 6 years, 9 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 | « content/renderer/media/webrtc_audio_device_unittest.cc ('k') | content/test/webrtc_audio_device_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/webrtc_audio_device_test.h
diff --git a/content/test/webrtc_audio_device_test.h b/content/test/webrtc_audio_device_test.h
deleted file mode 100644
index 4a37cd2cf5eac14f92b3319c54c95cd8884894b6..0000000000000000000000000000000000000000
--- a/content/test/webrtc_audio_device_test.h
+++ /dev/null
@@ -1,212 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_
-#define CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_
-
-#include <string>
-
-#include "base/files/file_path.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/browser/renderer_host/media/mock_media_observer.h"
-#include "content/public/renderer/content_renderer_client.h"
-#include "ipc/ipc_listener.h"
-#include "media/base/audio_hardware_config.h"
-#include "media/base/channel_layout.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/webrtc/common_types.h"
-
-namespace IPC {
-class Channel;
-}
-
-namespace media {
-class AudioManager;
-}
-
-namespace net {
-class URLRequestContext;
-}
-
-namespace webrtc {
-class MediaStreamInterface;
-class VoENetwork;
-}
-
-#if defined(OS_WIN)
-namespace base {
-namespace win {
-class ScopedCOMInitializer;
-}
-}
-#endif
-
-namespace content {
-
-class AudioMirroringManager;
-class ContentRendererClient;
-class MediaStreamManager;
-class RenderThreadImpl;
-class ResourceContext;
-class TestAudioInputRendererHost;
-class TestAudioRendererHost;
-class TestBrowserThread;
-class WebRtcAudioRenderer;
-class WebRTCMockRenderProcess;
-
-// Scoped class for WebRTC interfaces. Fetches the wrapped interface
-// in the constructor via WebRTC's GetInterface mechanism and then releases
-// the reference in the destructor.
-template<typename T>
-class ScopedWebRTCPtr {
- public:
- template<typename Engine>
- explicit ScopedWebRTCPtr(Engine* e)
- : ptr_(T::GetInterface(e)) {}
- explicit ScopedWebRTCPtr(T* p) : ptr_(p) {}
- ~ScopedWebRTCPtr() { reset(); }
- T* operator->() const { return ptr_; }
- T* get() const { return ptr_; }
-
- // Releases the current pointer.
- void reset() {
- if (ptr_) {
- ptr_->Release();
- ptr_ = NULL;
- }
- }
-
- bool valid() const { return ptr_ != NULL; }
-
- private:
- T* ptr_;
-};
-
-// Wrapper to automatically calling T::Delete in the destructor.
-// This is useful for some WebRTC objects that have their own Create/Delete
-// methods and we can't use our our scoped_* classes.
-template <typename T>
-class WebRTCAutoDelete {
- public:
- WebRTCAutoDelete() : ptr_(NULL) {}
- explicit WebRTCAutoDelete(T* ptr) : ptr_(ptr) {}
- ~WebRTCAutoDelete() { reset(); }
-
- void reset() {
- if (ptr_) {
- T::Delete(ptr_);
- ptr_ = NULL;
- }
- }
-
- T* operator->() { return ptr_; }
- T* get() const { return ptr_; }
-
- bool valid() const { return ptr_ != NULL; }
-
- protected:
- T* ptr_;
-};
-
-// Implemented and defined in the cc file.
-class ReplaceContentClientRenderer;
-
-// Temporarily disabled in LeakSanitizer builds due to memory leaks.
-// http://crbug.com/148865
-// Disabling all tests for now since they are flaky.
-// http://crbug.com/167298
-#define MAYBE_WebRTCAudioDeviceTest DISABLED_WebRTCAudioDeviceTest
-
-class MAYBE_WebRTCAudioDeviceTest : public ::testing::Test,
- public IPC::Listener {
- public:
- MAYBE_WebRTCAudioDeviceTest();
- virtual ~MAYBE_WebRTCAudioDeviceTest();
-
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
-
- // Sends an IPC message to the IO thread channel.
- bool Send(IPC::Message* message);
-
- void SetAudioHardwareConfig(media::AudioHardwareConfig* hardware_config);
-
- scoped_refptr<WebRtcAudioRenderer> CreateDefaultWebRtcAudioRenderer(
- int render_view_id,
- const scoped_refptr<webrtc::MediaStreamInterface>& media_stream);
-
- protected:
- void InitializeIOThread(const char* thread_name);
- void UninitializeIOThread();
- void CreateChannel(const char* name);
- void DestroyChannel();
-
- void OnGetAudioHardwareConfig(media::AudioParameters* input_params,
- media::AudioParameters* output_params);
-
- // IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
-
- // Posts a final task to the IO message loop and waits for completion.
- void WaitForIOThreadCompletion();
- void WaitForAudioManagerCompletion();
- void WaitForTaskRunnerCompletion(
- const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
-
- std::string GetTestDataPath(const base::FilePath::StringType& file_name);
-
- scoped_ptr<ReplaceContentClientRenderer> saved_content_renderer_;
- base::MessageLoopForUI message_loop_;
- ContentRendererClient content_renderer_client_;
- RenderThreadImpl* render_thread_; // Owned by mock_process_.
- scoped_ptr<WebRTCMockRenderProcess> mock_process_;
- scoped_ptr<MediaStreamManager> media_stream_manager_;
- scoped_ptr<media::AudioManager> audio_manager_;
- scoped_ptr<AudioMirroringManager> mirroring_manager_;
- scoped_ptr<net::URLRequestContext> test_request_context_;
- scoped_ptr<ResourceContext> resource_context_;
- scoped_ptr<IPC::Channel> channel_;
- scoped_refptr<TestAudioRendererHost> audio_render_host_;
- scoped_refptr<TestAudioInputRendererHost> audio_input_renderer_host_;
-
- media::AudioHardwareConfig* audio_hardware_config_; // Weak reference.
-
- // Initialized on the main test thread that we mark as the UI thread.
- scoped_ptr<TestBrowserThread> ui_thread_;
- // Initialized on our IO thread to satisfy BrowserThread::IO checks.
- scoped_ptr<TestBrowserThread> io_thread_;
-
-#if defined(OS_WIN)
- // COM initialization on the IO thread.
- scoped_ptr<base::win::ScopedCOMInitializer> initialize_com_;
-#endif
-
- // These are initialized when we set up our IO thread.
- bool has_input_devices_;
- bool has_output_devices_;
-
- // The previous state for whether sandbox support was enabled in
- // RenderViewWebKitPlatformSupportImpl.
- bool sandbox_was_enabled_;
-};
-
-// A very basic implementation of webrtc::Transport that acts as a transport
-// but just forwards all calls to a local webrtc::VoENetwork implementation.
-// Ownership of the VoENetwork object lies outside the class.
-class WebRTCTransportImpl : public webrtc::Transport {
- public:
- explicit WebRTCTransportImpl(webrtc::VoENetwork* network);
- virtual ~WebRTCTransportImpl();
-
- virtual int SendPacket(int channel, const void* data, int len) OVERRIDE;
- virtual int SendRTCPPacket(int channel, const void* data, int len) OVERRIDE;
-
- private:
- webrtc::VoENetwork* network_;
-};
-
-} // namespace content
-
-#endif // CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_
« no previous file with comments | « content/renderer/media/webrtc_audio_device_unittest.cc ('k') | content/test/webrtc_audio_device_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698