diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 16:09:44 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 16:09:44 +0000 |
commit | 2a026e544be39ea9c7da534bf8433fc8704fe5cc (patch) | |
tree | 9c964679770d5da383b7e486d10e65d70285b30c /ipc/ipc_tests.h | |
parent | 8076ec09436c54c8c8d242629a7667abf0feb7a7 (diff) | |
download | chromium_src-2a026e544be39ea9c7da534bf8433fc8704fe5cc.zip chromium_src-2a026e544be39ea9c7da534bf8433fc8704fe5cc.tar.gz chromium_src-2a026e544be39ea9c7da534bf8433fc8704fe5cc.tar.bz2 |
Add OVERRIDE to ipc/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8590004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_tests.h')
-rw-r--r-- | ipc/ipc_tests.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/ipc_tests.h b/ipc/ipc_tests.h index bfefb4c..f4fa113 100644 --- a/ipc/ipc_tests.h +++ b/ipc/ipc_tests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -36,8 +36,8 @@ class IPCChannelTest : public base::MultiProcessTest { protected: // Create a new MessageLoopForIO For each test. - virtual void SetUp(); - virtual void TearDown(); + virtual void SetUp() OVERRIDE; + virtual void TearDown() OVERRIDE; // Spawns a child process of the specified type base::ProcessHandle SpawnChild(ChildType child_type, IPC::Channel* channel); |