Index: net/dns/dns_test_util.cc |
diff --git a/net/dns/dns_test_util.cc b/net/dns/dns_test_util.cc |
index 01acb346fa9d8f940a90543f49378e20e8e295d5..6327ed259539645c5a84b2a816717535cadf9b2f 100644 |
--- a/net/dns/dns_test_util.cc |
+++ b/net/dns/dns_test_util.cc |
@@ -27,7 +27,7 @@ class MockAddressSorter : public AddressSorter { |
public: |
virtual ~MockAddressSorter() {} |
virtual void Sort(const AddressList& list, |
- const CallbackType& callback) const OVERRIDE { |
+ const CallbackType& callback) const override { |
// Do nothing. |
callback.Run(true, list); |
} |
@@ -60,15 +60,15 @@ class MockTransaction : public DnsTransaction, |
} |
} |
- virtual const std::string& GetHostname() const OVERRIDE { |
+ virtual const std::string& GetHostname() const override { |
return hostname_; |
} |
- virtual uint16 GetType() const OVERRIDE { |
+ virtual uint16 GetType() const override { |
return qtype_; |
} |
- virtual void Start() OVERRIDE { |
+ virtual void Start() override { |
EXPECT_FALSE(started_); |
started_ = true; |
if (delayed_) |
@@ -172,7 +172,7 @@ class MockTransactionFactory : public DnsTransactionFactory { |
const std::string& hostname, |
uint16 qtype, |
const DnsTransactionFactory::CallbackType& callback, |
- const BoundNetLog&) OVERRIDE { |
+ const BoundNetLog&) override { |
MockTransaction* transaction = |
new MockTransaction(rules_, hostname, qtype, callback); |
if (transaction->delayed()) |