Skip to content

Commit

Permalink
Update {virtual,override,final} for sandbox/ to follow C++11 style.
Browse files Browse the repository at this point in the history
This patch was automatically generated using a variation of
https://codereview.chromium.org/598073004 on a Mac build.

BUG=417463

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

Cr-Commit-Position: refs/heads/master@{#310666}
  • Loading branch information
zetafunction authored and Commit bot committed Jan 9, 2015
1 parent 6013533 commit 681377e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sandbox/mac/bootstrap_sandbox_unittest.mm
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ - (void)observeNotification:(NSNotification*)notification {

class BootstrapSandboxTest : public base::MultiProcessTest {
public:
virtual void SetUp() override {
void SetUp() override {
base::MultiProcessTest::SetUp();

sandbox_ = BootstrapSandbox::Create();
Expand Down
2 changes: 1 addition & 1 deletion sandbox/mac/dispatch_source_mach_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace sandbox {

class DispatchSourceMachTest : public testing::Test {
public:
virtual void SetUp() override {
void SetUp() override {
mach_port_t port = MACH_PORT_NULL;
ASSERT_EQ(KERN_SUCCESS, mach_port_allocate(mach_task_self(),
MACH_PORT_RIGHT_RECEIVE, &port));
Expand Down
2 changes: 1 addition & 1 deletion sandbox/mac/xpc_message_server_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace sandbox {

class XPCMessageServerTest : public testing::Test {
public:
virtual void SetUp() override {
void SetUp() override {
if (!RunXPCTest())
return;
ASSERT_TRUE(InitializeXPC());
Expand Down

0 comments on commit 681377e

Please sign in to comment.