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

Unified Diff: chrome/browser/local_discovery/test_service_discovery_client.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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
Index: chrome/browser/local_discovery/test_service_discovery_client.h
diff --git a/chrome/browser/local_discovery/test_service_discovery_client.h b/chrome/browser/local_discovery/test_service_discovery_client.h
index 28836d458956333fbc70874c24fc28a39c4ff3bc..caf5eec45e40a9be21fa069038c229917c7101bd 100644
--- a/chrome/browser/local_discovery/test_service_discovery_client.h
+++ b/chrome/browser/local_discovery/test_service_discovery_client.h
@@ -19,13 +19,13 @@ class TestServiceDiscoveryClient : public ServiceDiscoverySharedClient {
void Start();
- virtual scoped_ptr<ServiceWatcher> CreateServiceWatcher(
+ scoped_ptr<ServiceWatcher> CreateServiceWatcher(
const std::string& service_type,
const ServiceWatcher::UpdatedCallback& callback) override;
- virtual scoped_ptr<ServiceResolver> CreateServiceResolver(
+ scoped_ptr<ServiceResolver> CreateServiceResolver(
const std::string& service_name,
const ServiceResolver::ResolveCompleteCallback& callback) override;
- virtual scoped_ptr<LocalDomainResolver> CreateLocalDomainResolver(
+ scoped_ptr<LocalDomainResolver> CreateLocalDomainResolver(
const std::string& domain,
net::AddressFamily address_family,
const LocalDomainResolver::IPAddressCallback& callback) override;
@@ -35,7 +35,7 @@ class TestServiceDiscoveryClient : public ServiceDiscoverySharedClient {
void SimulateReceive(const uint8* packet, int size);
private:
- ~TestServiceDiscoveryClient();
+ ~TestServiceDiscoveryClient() override;
// Owned by mdns_client_impl_.
net::MockMDnsSocketFactory mock_socket_factory_;

Powered by Google App Engine
This is Rietveld 408576698