Fixed Copy and Assign in MediaHandlerGraphTestBase

The copy and assign in MediaHandlerGraphTestBase referred to the wrong
types. This changes them to refer to the correct types.

Change-Id: I165c9a1da39b49adf41e7c35ae3e4a0b9ecfa838
This commit is contained in:
Aaron Vaage 2018-06-20 16:26:35 -07:00
parent d8830e3168
commit 0efc7612ed
1 changed files with 3 additions and 2 deletions

View File

@ -384,8 +384,9 @@ class MediaHandlerGraphTestBase : public MediaHandlerTestBase {
std::shared_ptr<FakeMediaHandler> next_handler() { return next_handler_; } std::shared_ptr<FakeMediaHandler> next_handler() { return next_handler_; }
private: private:
MediaHandlerGraphTestBase(const MediaHandlerTestBase&) = delete; MediaHandlerGraphTestBase(const MediaHandlerGraphTestBase&) = delete;
MediaHandlerGraphTestBase& operator=(const MediaHandlerTestBase&) = delete; MediaHandlerGraphTestBase& operator=(const MediaHandlerGraphTestBase&) =
delete;
// Downstream handler used in testing graph. // Downstream handler used in testing graph.
std::shared_ptr<FakeMediaHandler> next_handler_; std::shared_ptr<FakeMediaHandler> next_handler_;