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

Unified Diff: chrome/test/reliability/automated_ui_tests.h

Issue 8558032: Add OVERRIDE to chrome/test/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « chrome/test/reliability/automated_ui_test_base.h ('k') | chrome/test/ui/npapi_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/reliability/automated_ui_tests.h
diff --git a/chrome/test/reliability/automated_ui_tests.h b/chrome/test/reliability/automated_ui_tests.h
index 60cba7218c9dde9d6ec9a71689637b9146eb8e62..25bdccfcfa7de04c3fe060fd9bc8dd82bf708815 100644
--- a/chrome/test/reliability/automated_ui_tests.h
+++ b/chrome/test/reliability/automated_ui_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.
@@ -353,20 +353,20 @@ class AutomatedUITest : public AutomatedUITestBase {
bool DidCrash(bool update_total_crashes);
// Override the message logging in AutomatedUITestBase.
- virtual void LogErrorMessage(const std::string& error);
- virtual void LogWarningMessage(const std::string& warning);
- virtual void LogInfoMessage(const std::string& info);
+ virtual void LogErrorMessage(const std::string& error) OVERRIDE;
+ virtual void LogWarningMessage(const std::string& warning) OVERRIDE;
+ virtual void LogInfoMessage(const std::string& info) OVERRIDE;
// Overridden so that UI Test doesn't set up when the tests start.
// We use DoAction("SetUp") to set up, because it logs it and makes
// it easier to check for crashes when we start the browser.
- virtual void SetUp() {}
+ virtual void SetUp() OVERRIDE {}
// Overridden so that UI Test doesn't close the browser (which is already
// closed) at the end of the test.
// We use DoAction("TearDown") to tear down, because it logs it and makes
// it easier to check for crashes when we close the browser.
- virtual void TearDown() {}
+ virtual void TearDown() OVERRIDE {}
private:
// Parses the init file.
« no previous file with comments | « chrome/test/reliability/automated_ui_test_base.h ('k') | chrome/test/ui/npapi_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698