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

Unified Diff: chromecast/shell/browser/url_request_context_factory.cc

Issue 630663003: replace OVERRIDE and FINAL with override and final in chromecast/ (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: chromecast/shell/browser/url_request_context_factory.cc
diff --git a/chromecast/shell/browser/url_request_context_factory.cc b/chromecast/shell/browser/url_request_context_factory.cc
index b7ff5764c0a540d20bda12d76127ab997c5370e5..070185589f1b3b7040dcbc28725e2691b9f701f2 100644
--- a/chromecast/shell/browser/url_request_context_factory.cc
+++ b/chromecast/shell/browser/url_request_context_factory.cc
@@ -59,7 +59,7 @@ class URLRequestContextFactory::URLRequestContextGetter
factory_(factory) {
}
- virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE {
+ virtual net::URLRequestContext* GetURLRequestContext() override {
if (!request_context_) {
if (is_media_) {
request_context_.reset(factory_->CreateMediaRequestContext());
@@ -75,7 +75,7 @@ class URLRequestContextFactory::URLRequestContextGetter
}
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetNetworkTaskRunner() const OVERRIDE {
+ GetNetworkTaskRunner() const override {
return content::BrowserThread::GetMessageLoopProxyForThread(
content::BrowserThread::IO);
}
@@ -106,7 +106,7 @@ class URLRequestContextFactory::MainURLRequestContextGetter
std::swap(protocol_handlers_, *protocol_handlers);
}
- virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE {
+ virtual net::URLRequestContext* GetURLRequestContext() override {
if (!request_context_) {
request_context_.reset(factory_->CreateMainRequestContext(
browser_context_, &protocol_handlers_, request_interceptors_.Pass()));
@@ -116,7 +116,7 @@ class URLRequestContextFactory::MainURLRequestContextGetter
}
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetNetworkTaskRunner() const OVERRIDE {
+ GetNetworkTaskRunner() const override {
return content::BrowserThread::GetMessageLoopProxyForThread(
content::BrowserThread::IO);
}
« no previous file with comments | « chromecast/shell/browser/test/chromecast_shell_browser_test.cc ('k') | chromecast/shell/common/cast_content_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698