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 :
const char*,
const char*> > {
protected:
virtual void SetUp() OVERRIDE {
virtual void SetUp() override {
override_manager_.OverrideRegistry(HKEY_LOCAL_MACHINE);
override_manager_.OverrideRegistry(HKEY_CURRENT_USER);
const char* app;
......
......@@ -76,7 +76,7 @@ class ChromeCreateFileTest : public PlatformTest {
path);
}
virtual void SetUp() OVERRIDE {
virtual void SetUp() override {
original_thread_ = base::PlatformThread::CurrentId();
InitCache();
PlatformTest::SetUp();
......
......@@ -13,7 +13,7 @@ namespace {
class NTDLLCacheTest : public testing::Test {
protected:
virtual void SetUp() OVERRIDE {
virtual void SetUp() override {
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