Move RtcEventLog::CreateNull implementation near declaration.

having implementation and declaration in same build target helps
setting dependencies

Bug: None
Change-Id: Ibf22e9c8781def9d84ce4562d0f0eaba5abd39cf
Reviewed-on: https://webrtc-review.googlesource.com/c/106900
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25255}
This commit is contained in:
Danil Chapovalov
2018-10-18 14:20:44 +02:00
committed by Commit Bot
parent 78416b6e18
commit 608298b6ae
3 changed files with 7 additions and 4 deletions

View File

@ -372,8 +372,4 @@ std::unique_ptr<RtcEventLog> RtcEventLog::Create(
#endif // ENABLE_RTC_EVENT_LOG
}
std::unique_ptr<RtcEventLog> RtcEventLog::CreateNull() {
return std::unique_ptr<RtcEventLog>(new RtcEventLogNullImpl());
}
} // namespace webrtc