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

Unified Diff: base/environment.cc

Issue 611153004: replace OVERRIDE and FINAL with override and final in base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CC_ -> BASE_ 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 | « base/deferred_sequenced_task_runner.h ('k') | base/file_version_info_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/environment.cc
diff --git a/base/environment.cc b/base/environment.cc
index c5477305a1fa7ace523aadc9a46a5408e6559cd1..94a766c16609b06800960df33d5a714d640858d1 100644
--- a/base/environment.cc
+++ b/base/environment.cc
@@ -23,7 +23,7 @@ namespace {
class EnvironmentImpl : public base::Environment {
public:
virtual bool GetVar(const char* variable_name,
- std::string* result) OVERRIDE {
+ std::string* result) override {
if (GetVarImpl(variable_name, result))
return true;
@@ -43,11 +43,11 @@ class EnvironmentImpl : public base::Environment {
}
virtual bool SetVar(const char* variable_name,
- const std::string& new_value) OVERRIDE {
+ const std::string& new_value) override {
return SetVarImpl(variable_name, new_value);
}
- virtual bool UnSetVar(const char* variable_name) OVERRIDE {
+ virtual bool UnSetVar(const char* variable_name) override {
return UnSetVarImpl(variable_name);
}
« no previous file with comments | « base/deferred_sequenced_task_runner.h ('k') | base/file_version_info_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698