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

Unified Diff: chrome/browser/local_discovery/privet_notifications_unittest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
Index: chrome/browser/local_discovery/privet_notifications_unittest.cc
diff --git a/chrome/browser/local_discovery/privet_notifications_unittest.cc b/chrome/browser/local_discovery/privet_notifications_unittest.cc
index 2cdcf71ca0ac254d0000bcfe5be7b15c7ad5b97c..a6e8a0ddca8803f397d9b6bcd6a0ee2aa75d76a9 100644
--- a/chrome/browser/local_discovery/privet_notifications_unittest.cc
+++ b/chrome/browser/local_discovery/privet_notifications_unittest.cc
@@ -51,12 +51,12 @@ class MockPrivetHttpFactory : public PrivetHTTPAsynchronousFactory {
virtual ~MockResolution() {
}
- virtual void Start() OVERRIDE {
+ virtual void Start() override {
callback_.Run(scoped_ptr<PrivetHTTPClient>(new PrivetHTTPClientImpl(
name_, net::HostPortPair("1.2.3.4", 8080), request_context_.get())));
}
- virtual const std::string& GetName() OVERRIDE {
+ virtual const std::string& GetName() override {
return name_;
}
@@ -73,7 +73,7 @@ class MockPrivetHttpFactory : public PrivetHTTPAsynchronousFactory {
virtual scoped_ptr<PrivetHTTPResolution> CreatePrivetHTTP(
const std::string& name,
const net::HostPortPair& address,
- const ResultCallback& callback) OVERRIDE {
+ const ResultCallback& callback) override {
return scoped_ptr<PrivetHTTPResolution>(
new MockResolution(name, request_context_.get(), callback));
}

Powered by Google App Engine
This is Rietveld 408576698