Remove final from RtcEventLogNullImpl

The reason is that there might be implementations that do not want to implement all methods.
To allow easier modification of the RtcEventLog interface, allow these implementation to inherit the RtcEventLogNullImpl implementation.

BUG=none

Review-Url: https://codereview.webrtc.org/2903003002
Cr-Commit-Position: refs/heads/master@{#18298}
This commit is contained in:
perkj 2017-05-29 02:46:05 -07:00 committed by Commit bot
parent 5682240a15
commit 33bb86d5a1

View File

@ -188,7 +188,7 @@ class RtcEventLog {
};
// No-op implementation is used if flag is not set, or in tests.
class RtcEventLogNullImpl final : public RtcEventLog {
class RtcEventLogNullImpl : public RtcEventLog {
public:
bool StartLogging(const std::string& file_name,
int64_t max_size_bytes) override {