| Index: net/dns/dns_client.cc
|
| diff --git a/net/dns/dns_client.cc b/net/dns/dns_client.cc
|
| index 9e29ca4265d0a5c2332cbfcb0e371bc5d222f56c..de96c02622116992853066e6058845e33a6e571b 100644
|
| --- a/net/dns/dns_client.cc
|
| +++ b/net/dns/dns_client.cc
|
| @@ -24,7 +24,7 @@ class DnsClientImpl : public DnsClient {
|
| : address_sorter_(AddressSorter::CreateAddressSorter()),
|
| net_log_(net_log) {}
|
|
|
| - virtual void SetConfig(const DnsConfig& config) OVERRIDE {
|
| + virtual void SetConfig(const DnsConfig& config) override {
|
| factory_.reset();
|
| session_ = NULL;
|
| if (config.IsValid() && !config.unhandled_options) {
|
| @@ -40,15 +40,15 @@ class DnsClientImpl : public DnsClient {
|
| }
|
| }
|
|
|
| - virtual const DnsConfig* GetConfig() const OVERRIDE {
|
| + virtual const DnsConfig* GetConfig() const override {
|
| return session_.get() ? &session_->config() : NULL;
|
| }
|
|
|
| - virtual DnsTransactionFactory* GetTransactionFactory() OVERRIDE {
|
| + virtual DnsTransactionFactory* GetTransactionFactory() override {
|
| return session_.get() ? factory_.get() : NULL;
|
| }
|
|
|
| - virtual AddressSorter* GetAddressSorter() OVERRIDE {
|
| + virtual AddressSorter* GetAddressSorter() override {
|
| return address_sorter_.get();
|
| }
|
|
|
|
|