Skip to content

Commit

Permalink
Replace OVERRIDE with its C++11 counterparts in src/chrome_elf
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
r.nagaraj authored and Commit bot committed Oct 11, 2014
1 parent 959e739 commit 0c5b0e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chrome_elf/chrome_elf_util_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion chrome_elf/create_file/chrome_create_file_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion chrome_elf/ntdll_cache_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace {

class NTDLLCacheTest : public testing::Test {
protected:
virtual void SetUp() OVERRIDE {
virtual void SetUp() override {
InitCache();
}

Expand Down

0 comments on commit 0c5b0e5

Please sign in to comment.