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

Unified Diff: remoting/protocol/chromium_port_allocator.cc

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « remoting/protocol/chromium_port_allocator.h ('k') | remoting/protocol/chromium_socket_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/chromium_port_allocator.cc
diff --git a/remoting/protocol/chromium_port_allocator.cc b/remoting/protocol/chromium_port_allocator.cc
index d42c4f60797250f74a75e1a944902499f98cfb24..013be8595cdf15ec40db3ba0382cbcd9b24e4bca 100644
--- a/remoting/protocol/chromium_port_allocator.cc
+++ b/remoting/protocol/chromium_port_allocator.cc
@@ -34,14 +34,14 @@ class ChromiumPortAllocatorSession
const std::vector<std::string>& relay_hosts,
const std::string& relay,
const scoped_refptr<net::URLRequestContextGetter>& url_context);
- virtual ~ChromiumPortAllocatorSession();
+ ~ChromiumPortAllocatorSession() override;
// cricket::HttpPortAllocatorBase overrides.
- virtual void ConfigReady(cricket::PortConfiguration* config) override;
- virtual void SendSessionRequest(const std::string& host, int port) override;
+ void ConfigReady(cricket::PortConfiguration* config) override;
+ void SendSessionRequest(const std::string& host, int port) override;
// net::URLFetcherDelegate interface.
- virtual void OnURLFetchComplete(const net::URLFetcher* url_fetcher) override;
+ void OnURLFetchComplete(const net::URLFetcher* url_fetcher) override;
private:
scoped_refptr<net::URLRequestContextGetter> url_context_;
« no previous file with comments | « remoting/protocol/chromium_port_allocator.h ('k') | remoting/protocol/chromium_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698