Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Unified Diff: net/dns/mdns_client_impl.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/dns/mapped_host_resolver.h ('k') | net/dns/mdns_client_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/mdns_client_impl.h
diff --git a/net/dns/mdns_client_impl.h b/net/dns/mdns_client_impl.h
index 6051511c01975d6eee5fb0c3b46352bb52757fd0..b6f8b934c9352ee9066a6586379dee9f37138a04 100644
--- a/net/dns/mdns_client_impl.h
+++ b/net/dns/mdns_client_impl.h
@@ -29,7 +29,7 @@ class MDnsSocketFactoryImpl : public MDnsSocketFactory {
virtual ~MDnsSocketFactoryImpl() {};
virtual void CreateSockets(
- ScopedVector<DatagramServerSocket>* sockets) OVERRIDE;
+ ScopedVector<DatagramServerSocket>* sockets) override;
private:
DISALLOW_COPY_AND_ASSIGN(MDnsSocketFactoryImpl);
@@ -128,9 +128,9 @@ class NET_EXPORT_PRIVATE MDnsClientImpl : public MDnsClient {
std::vector<const RecordParsed*>* records) const;
// Parse the response and alert relevant listeners.
- virtual void HandlePacket(DnsResponse* response, int bytes_read) OVERRIDE;
+ virtual void HandlePacket(DnsResponse* response, int bytes_read) override;
- virtual void OnConnectionError(int error) OVERRIDE;
+ virtual void OnConnectionError(int error) override;
private:
typedef std::pair<std::string, uint16> ListenerKey;
@@ -176,17 +176,17 @@ class NET_EXPORT_PRIVATE MDnsClientImpl : public MDnsClient {
virtual scoped_ptr<MDnsListener> CreateListener(
uint16 rrtype,
const std::string& name,
- MDnsListener::Delegate* delegate) OVERRIDE;
+ MDnsListener::Delegate* delegate) override;
virtual scoped_ptr<MDnsTransaction> CreateTransaction(
uint16 rrtype,
const std::string& name,
int flags,
- const MDnsTransaction::ResultCallback& callback) OVERRIDE;
+ const MDnsTransaction::ResultCallback& callback) override;
- virtual bool StartListening(MDnsSocketFactory* socket_factory) OVERRIDE;
- virtual void StopListening() OVERRIDE;
- virtual bool IsListening() const OVERRIDE;
+ virtual bool StartListening(MDnsSocketFactory* socket_factory) override;
+ virtual void StopListening() override;
+ virtual bool IsListening() const override;
Core* core() { return core_.get(); }
@@ -207,14 +207,14 @@ class MDnsListenerImpl : public MDnsListener,
virtual ~MDnsListenerImpl();
// MDnsListener implementation:
- virtual bool Start() OVERRIDE;
+ virtual bool Start() override;
// Actively refresh any received records.
- virtual void SetActiveRefresh(bool active_refresh) OVERRIDE;
+ virtual void SetActiveRefresh(bool active_refresh) override;
- virtual const std::string& GetName() const OVERRIDE;
+ virtual const std::string& GetName() const override;
- virtual uint16 GetType() const OVERRIDE;
+ virtual uint16 GetType() const override;
MDnsListener::Delegate* delegate() { return delegate_; }
@@ -255,17 +255,17 @@ class MDnsTransactionImpl : public base::SupportsWeakPtr<MDnsTransactionImpl>,
virtual ~MDnsTransactionImpl();
// MDnsTransaction implementation:
- virtual bool Start() OVERRIDE;
+ virtual bool Start() override;
- virtual const std::string& GetName() const OVERRIDE;
- virtual uint16 GetType() const OVERRIDE;
+ virtual const std::string& GetName() const override;
+ virtual uint16 GetType() const override;
// MDnsListener::Delegate implementation:
virtual void OnRecordUpdate(MDnsListener::UpdateType update,
- const RecordParsed* record) OVERRIDE;
- virtual void OnNsecRecord(const std::string& name, unsigned type) OVERRIDE;
+ const RecordParsed* record) override;
+ virtual void OnNsecRecord(const std::string& name, unsigned type) override;
- virtual void OnCachePurged() OVERRIDE;
+ virtual void OnCachePurged() override;
private:
bool is_active() { return !callback_.is_null(); }
« no previous file with comments | « net/dns/mapped_host_resolver.h ('k') | net/dns/mdns_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698