| Index: net/base/capturing_net_log.h
|
| diff --git a/net/base/capturing_net_log.h b/net/base/capturing_net_log.h
|
| index a58b6ff0c0b6eda4c4b8d95c7e89857e44c843d0..5977533525e5a3df0b7c47ead9131e097023c46a 100644
|
| --- a/net/base/capturing_net_log.h
|
| +++ b/net/base/capturing_net_log.h
|
| @@ -72,7 +72,7 @@ class CapturingNetLog : public NetLog {
|
| typedef std::vector<CapturedEntry> CapturedEntryList;
|
|
|
| CapturingNetLog();
|
| - virtual ~CapturingNetLog();
|
| + ~CapturingNetLog() override;
|
|
|
| void SetLogLevel(LogLevel log_level);
|
|
|
| @@ -89,7 +89,7 @@ class CapturingNetLog : public NetLog {
|
| class Observer : public NetLog::ThreadSafeObserver {
|
| public:
|
| Observer();
|
| - virtual ~Observer();
|
| + ~Observer() override;
|
|
|
| // Returns the list of all entries in the log.
|
| void GetEntries(CapturedEntryList* entry_list) const;
|
| @@ -105,7 +105,7 @@ class CapturingNetLog : public NetLog {
|
|
|
| private:
|
| // ThreadSafeObserver implementation:
|
| - virtual void OnAddEntry(const Entry& entry) override;
|
| + void OnAddEntry(const Entry& entry) override;
|
|
|
| // Needs to be "mutable" so can use it in GetEntries().
|
| mutable base::Lock lock_;
|
|
|