From 0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c Mon Sep 17 00:00:00 2001 From: dcheng Date: Tue, 21 Oct 2014 04:13:07 -0700 Subject: Standardize usage of virtual/override/final in chrome/browser/sync/ This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/666733003 Cr-Commit-Position: refs/heads/master@{#300454} --- chrome/browser/sync/test/integration/enable_disable_test.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/browser/sync/test/integration/enable_disable_test.cc') diff --git a/chrome/browser/sync/test/integration/enable_disable_test.cc b/chrome/browser/sync/test/integration/enable_disable_test.cc index 00e79ee..ed9a364 100644 --- a/chrome/browser/sync/test/integration/enable_disable_test.cc +++ b/chrome/browser/sync/test/integration/enable_disable_test.cc @@ -20,7 +20,8 @@ class EnableDisableSingleClientTest : public SyncTest { virtual ~EnableDisableSingleClientTest() {} // Don't use self-notifications as they can trigger additional sync cycles. - virtual bool TestUsesSelfNotifications() override { return false; } + bool TestUsesSelfNotifications() override { return false; } + private: DISALLOW_COPY_AND_ASSIGN(EnableDisableSingleClientTest); }; -- cgit v1.1