Commit 0c5b0e52 authored by r.nagaraj's avatar r.nagaraj Committed by Commit bot

Replace OVERRIDE with its C++11 counterparts in src/chrome_elf

This step is a complete search for OVERRIDE to
replace it with its lowercase versions.

BUG=417463

Review URL: https://codereview.chromium.org/644783004

Cr-Commit-Position: refs/heads/master@{#299241}
parent 959e739d
...@@ -57,7 +57,7 @@ class ChromeElfUtilTest : ...@@ -57,7 +57,7 @@ class ChromeElfUtilTest :
const char*, const char*,
const char*> > { const char*> > {
protected: protected:
virtual void SetUp() OVERRIDE { virtual void SetUp() override {
override_manager_.OverrideRegistry(HKEY_LOCAL_MACHINE); override_manager_.OverrideRegistry(HKEY_LOCAL_MACHINE);
override_manager_.OverrideRegistry(HKEY_CURRENT_USER); override_manager_.OverrideRegistry(HKEY_CURRENT_USER);
const char* app; const char* app;
......
...@@ -76,7 +76,7 @@ class ChromeCreateFileTest : public PlatformTest { ...@@ -76,7 +76,7 @@ class ChromeCreateFileTest : public PlatformTest {
path); path);
} }
virtual void SetUp() OVERRIDE { virtual void SetUp() override {
original_thread_ = base::PlatformThread::CurrentId(); original_thread_ = base::PlatformThread::CurrentId();
InitCache(); InitCache();
PlatformTest::SetUp(); PlatformTest::SetUp();
......
...@@ -13,7 +13,7 @@ namespace { ...@@ -13,7 +13,7 @@ namespace {
class NTDLLCacheTest : public testing::Test { class NTDLLCacheTest : public testing::Test {
protected: protected:
virtual void SetUp() OVERRIDE { virtual void SetUp() override {
InitCache(); InitCache();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment