| Index: net/dns/address_sorter_win.cc
|
| diff --git a/net/dns/address_sorter_win.cc b/net/dns/address_sorter_win.cc
|
| index 813bd93c38b5be6dda4dcde2c876620ade580476..079ba6abe5a896bfb0117d0020f70b39ad5fe8f7 100644
|
| --- a/net/dns/address_sorter_win.cc
|
| +++ b/net/dns/address_sorter_win.cc
|
| @@ -31,7 +31,7 @@ class AddressSorterWin : public AddressSorter {
|
|
|
| // AddressSorter:
|
| virtual void Sort(const AddressList& list,
|
| - const CallbackType& callback) const OVERRIDE {
|
| + const CallbackType& callback) const override {
|
| DCHECK(!list.empty());
|
| scoped_refptr<Job> job = new Job(list, callback);
|
| }
|
| @@ -160,7 +160,7 @@ class AddressSorterWinXP : public AddressSorter {
|
|
|
| // AddressSorter:
|
| virtual void Sort(const AddressList& list,
|
| - const CallbackType& callback) const OVERRIDE {
|
| + const CallbackType& callback) const override {
|
| AddressList list_ipv4;
|
| AddressList list_ipv6;
|
| for (size_t i = 0; i < list.size(); ++i) {
|
|
|