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

Unified Diff: chrome/browser/sync/test/integration/sync_test.h

Issue 686563003: Standardize usage of virtual/override/final specifiers. (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
Index: chrome/browser/sync/test/integration/sync_test.h
diff --git a/chrome/browser/sync/test/integration/sync_test.h b/chrome/browser/sync/test/integration/sync_test.h
index e67ea2ee78707cc825075006f43c6c583fefead9..970c1d6a919251cc113c28272134fd60e95863ae 100644
--- a/chrome/browser/sync/test/integration/sync_test.h
+++ b/chrome/browser/sync/test/integration/sync_test.h
@@ -97,14 +97,14 @@ class SyncTest : public InProcessBrowserTest {
// A SyncTest must be associated with a particular test type.
explicit SyncTest(TestType test_type);
- virtual ~SyncTest();
+ ~SyncTest() override;
// Validates command line parameters and creates a local python test server if
// specified.
- virtual void SetUp() override;
+ void SetUp() override;
// Brings down local python test server if one was created.
- virtual void TearDown() override;
+ void TearDown() override;
// Sets up command line flags required for sync tests.
void SetUpCommandLine(base::CommandLine* cl) override;

Powered by Google App Engine
This is Rietveld 408576698