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

Unified Diff: chrome/browser/net/chrome_url_request_context_getter.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
« no previous file with comments | « chrome/browser/net/chrome_url_request_context_getter.h ('k') | chrome/browser/net/connection_tester.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/chrome_url_request_context_getter.cc
diff --git a/chrome/browser/net/chrome_url_request_context_getter.cc b/chrome/browser/net/chrome_url_request_context_getter.cc
index deac9be6bf9ad005b9450efd24767e0775caf77f..b8f708319ff3de6543cfdc417eb404efc5b9c9cf 100644
--- a/chrome/browser/net/chrome_url_request_context_getter.cc
+++ b/chrome/browser/net/chrome_url_request_context_getter.cc
@@ -48,7 +48,7 @@ class FactoryForMain : public ChromeURLRequestContextFactory {
std::swap(protocol_handlers_, *protocol_handlers);
}
- virtual net::URLRequestContext* Create() OVERRIDE {
+ virtual net::URLRequestContext* Create() override {
profile_io_data_->Init(&protocol_handlers_, request_interceptors_.Pass());
return profile_io_data_->GetMainRequestContext();
}
@@ -65,7 +65,7 @@ class FactoryForExtensions : public ChromeURLRequestContextFactory {
explicit FactoryForExtensions(const ProfileIOData* profile_io_data)
: profile_io_data_(profile_io_data) {}
- virtual net::URLRequestContext* Create() OVERRIDE {
+ virtual net::URLRequestContext* Create() override {
return profile_io_data_->GetExtensionsRequestContext();
}
@@ -92,7 +92,7 @@ class FactoryForIsolatedApp : public ChromeURLRequestContextFactory {
std::swap(protocol_handlers_, *protocol_handlers);
}
- virtual net::URLRequestContext* Create() OVERRIDE {
+ virtual net::URLRequestContext* Create() override {
// We will copy most of the state from the main request context.
//
// Note that this factory is one-shot. After Create() is called once, the
@@ -129,7 +129,7 @@ class FactoryForIsolatedMedia : public ChromeURLRequestContextFactory {
partition_descriptor_(partition_descriptor),
app_context_getter_(app_context) {}
- virtual net::URLRequestContext* Create() OVERRIDE {
+ virtual net::URLRequestContext* Create() override {
// We will copy most of the state from the corresopnding app's
// request context. We expect to have the same lifetime as
// the associated |app_context_getter_| so we can just reuse
@@ -153,7 +153,7 @@ class FactoryForMedia : public ChromeURLRequestContextFactory {
: profile_io_data_(profile_io_data) {
}
- virtual net::URLRequestContext* Create() OVERRIDE {
+ virtual net::URLRequestContext* Create() override {
return profile_io_data_->GetMediaRequestContext();
}
« no previous file with comments | « chrome/browser/net/chrome_url_request_context_getter.h ('k') | chrome/browser/net/connection_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698