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

Unified Diff: chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc
diff --git a/chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc b/chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc
index 240ba599055a57d86a33610e974c06f5db7ec65a..e43f1711e105d9780d31d9173bd8a112e61dd23f 100644
--- a/chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc
+++ b/chrome/browser/extensions/api/gcd_private/gcd_private_apitest.cc
@@ -177,7 +177,7 @@ class FakeGCDApiFlowFactory
extensions::GcdPrivateAPI::SetGCDApiFlowFactoryForTests(NULL);
}
- virtual scoped_ptr<local_discovery::GCDApiFlow> CreateGCDApiFlow() OVERRIDE {
+ virtual scoped_ptr<local_discovery::GCDApiFlow> CreateGCDApiFlow() override {
return scoped_ptr<local_discovery::GCDApiFlow>(new FakeGCDApiFlow(this));
}
@@ -193,7 +193,7 @@ class FakeGCDApiFlowFactory
virtual ~FakeGCDApiFlow() {}
- virtual void Start(scoped_ptr<Request> request) OVERRIDE {
+ virtual void Start(scoped_ptr<Request> request) override {
std::string response_str = factory_->responses_[request->GetURL()];
if (response_str == kResponseValueFailure) {
@@ -228,7 +228,7 @@ class GcdPrivateAPITest : public ExtensionApiTest {
#endif // ENABLE_MDNS
}
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ virtual void SetUpCommandLine(CommandLine* command_line) override {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitchASCII(
extensions::switches::kWhitelistedExtensionID,
« no previous file with comments | « chrome/browser/extensions/api/gcd_private/gcd_private_api.cc ('k') | chrome/browser/extensions/api/gcm/gcm_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698