Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1934)

Unified Diff: base/message_pump_glib_unittest.cc

Issue 10834060: base: Add missing "virtual" keyword and OVERRIDE to some methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/json/json_parser.cc ('k') | base/process_util_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_glib_unittest.cc
diff --git a/base/message_pump_glib_unittest.cc b/base/message_pump_glib_unittest.cc
index feefe7647060f7c93d3c92ca6fcc83600fcf0dc0..e23cc1ed205fa30a2afd44440f2fa8c17593a8be 100644
--- a/base/message_pump_glib_unittest.cc
+++ b/base/message_pump_glib_unittest.cc
@@ -162,12 +162,12 @@ class MessagePumpGLibTest : public testing::Test {
public:
MessagePumpGLibTest() : loop_(NULL), injector_(NULL) { }
- virtual void SetUp() {
+ // Overridden from testing::Test:
+ virtual void SetUp() OVERRIDE {
loop_ = new MessageLoop(MessageLoop::TYPE_UI);
injector_ = new EventInjector();
}
-
- virtual void TearDown() {
+ virtual void TearDown() OVERRIDE {
delete injector_;
injector_ = NULL;
delete loop_;
« no previous file with comments | « base/json/json_parser.cc ('k') | base/process_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698