summaryrefslogtreecommitdiff
path: root/chromium/net/base/capturing_net_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/base/capturing_net_log.h')
-rw-r--r--chromium/net/base/capturing_net_log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/net/base/capturing_net_log.h b/chromium/net/base/capturing_net_log.h
index 06bc976eeaa..5977533525e 100644
--- a/chromium/net/base/capturing_net_log.h
+++ b/chromium/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_;