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

Unified Diff: chrome/test/base/interactive_ui_tests_main.cc

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « chrome/test/base/in_process_browser_test_browsertest.cc ('k') | chrome/test/base/javascript_browser_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/interactive_ui_tests_main.cc
diff --git a/chrome/test/base/interactive_ui_tests_main.cc b/chrome/test/base/interactive_ui_tests_main.cc
index 6f5b46c3700c7a21f39bf1eb8e9bce4c6ea2e93c..59e56ff2d8c6151d86010b0de70cad5256c913f6 100644
--- a/chrome/test/base/interactive_ui_tests_main.cc
+++ b/chrome/test/base/interactive_ui_tests_main.cc
@@ -26,11 +26,11 @@
class InteractiveUITestSuite : public ChromeTestSuite {
public:
InteractiveUITestSuite(int argc, char** argv) : ChromeTestSuite(argc, argv) {}
- virtual ~InteractiveUITestSuite() {}
+ ~InteractiveUITestSuite() override {}
protected:
// ChromeTestSuite overrides:
- virtual void Initialize() override {
+ void Initialize() override {
ChromeTestSuite::Initialize();
// Only allow ui_controls to be used in interactive_ui_tests, since they
@@ -54,7 +54,7 @@ class InteractiveUITestSuite : public ChromeTestSuite {
#endif
}
- virtual void Shutdown() override {
+ void Shutdown() override {
#if defined(OS_WIN)
com_initializer_.reset();
#endif
@@ -68,7 +68,7 @@ class InteractiveUITestSuite : public ChromeTestSuite {
class InteractiveUITestSuiteRunner : public ChromeTestSuiteRunner {
public:
- virtual int RunTestSuite(int argc, char** argv) override {
+ int RunTestSuite(int argc, char** argv) override {
return InteractiveUITestSuite(argc, argv).Run();
}
};
« no previous file with comments | « chrome/test/base/in_process_browser_test_browsertest.cc ('k') | chrome/test/base/javascript_browser_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698