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

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

Issue 272043003: Renamed MediaStreamDependencyFactory to PeerConnectionDependencyFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 7 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/renderer/media/media_stream_dependency_factory_unittest.cc
diff --git a/content/renderer/media/media_stream_dependency_factory_unittest.cc b/content/renderer/media/media_stream_dependency_factory_unittest.cc
deleted file mode 100644
index e0e71ab5f069a5486068df303909f763131d6153..0000000000000000000000000000000000000000
--- a/content/renderer/media/media_stream_dependency_factory_unittest.cc
+++ /dev/null
@@ -1,29 +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.
-
-#include "content/renderer/media/mock_media_stream_dependency_factory.h"
-#include "content/renderer/media/mock_web_rtc_peer_connection_handler_client.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h"
-
-namespace content {
-
-class MediaStreamDependencyFactoryTest : public ::testing::Test {
- public:
- virtual void SetUp() {
- dependency_factory_.reset(new MockMediaStreamDependencyFactory());
- }
-
- protected:
- scoped_ptr<MockMediaStreamDependencyFactory> dependency_factory_;
-};
-
-TEST_F(MediaStreamDependencyFactoryTest, CreateRTCPeerConnectionHandler) {
- MockWebRTCPeerConnectionHandlerClient client_jsep;
- scoped_ptr<blink::WebRTCPeerConnectionHandler> pc_handler(
- dependency_factory_->CreateRTCPeerConnectionHandler(&client_jsep));
- EXPECT_TRUE(pc_handler.get() != NULL);
-}
-
-} // namespace content
« no previous file with comments | « content/renderer/media/media_stream_dependency_factory.cc ('k') | content/renderer/media/media_stream_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698