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

Unified Diff: content/app/content_main_runner.cc

Issue 625263003: Replace OVERRIDE and FINAL with override and final in content/app/[a-s]* (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
« no previous file with comments | « content/app/android/child_process_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/app/content_main_runner.cc
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index b82a1ba36d213073fa24f47c76ce341f65fc10d2..bc33726b6e50cd3e7ea0db4076c7c668f682e716 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -480,7 +480,7 @@ class ContentMainRunnerImpl : public ContentMainRunner {
}
#endif
- virtual int Initialize(const ContentMainParams& params) OVERRIDE {
+ virtual int Initialize(const ContentMainParams& params) override {
ui_task_ = params.ui_task;
#if defined(OS_WIN)
@@ -749,7 +749,7 @@ class ContentMainRunnerImpl : public ContentMainRunner {
return -1;
}
- virtual int Run() OVERRIDE {
+ virtual int Run() override {
DCHECK(is_initialized_);
DCHECK(!is_shutdown_);
const base::CommandLine& command_line =
@@ -772,7 +772,7 @@ class ContentMainRunnerImpl : public ContentMainRunner {
#endif
}
- virtual void Shutdown() OVERRIDE {
+ virtual void Shutdown() override {
DCHECK(is_initialized_);
DCHECK(!is_shutdown_);
« no previous file with comments | « content/app/android/child_process_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698