From 9168b2fe3e30afa4fd9a9500ba0725edf97c20a3 Mon Sep 17 00:00:00 2001 From: dcheng Date: Tue, 21 Oct 2014 05:38:24 -0700 Subject: Standardize usage of virtual/override/final in extensions/ This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=yoz@chromium.org Review URL: https://codereview.chromium.org/664933004 Cr-Commit-Position: refs/heads/master@{#300475} --- extensions/browser/api_test_utils.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extensions/browser/api_test_utils.cc') diff --git a/extensions/browser/api_test_utils.cc b/extensions/browser/api_test_utils.cc index 4496dcb..23c0efe 100644 --- a/extensions/browser/api_test_utils.cc +++ b/extensions/browser/api_test_utils.cc @@ -22,7 +22,7 @@ class TestFunctionDispatcherDelegate : public ExtensionFunctionDispatcher::Delegate { public: TestFunctionDispatcherDelegate() {} - virtual ~TestFunctionDispatcherDelegate() {} + ~TestFunctionDispatcherDelegate() override {} // NULL implementation. private: @@ -60,9 +60,9 @@ class SendResponseDelegate return *response_.get(); } - virtual void OnSendResponse(UIThreadExtensionFunction* function, - bool success, - bool bad_message) override { + void OnSendResponse(UIThreadExtensionFunction* function, + bool success, + bool bad_message) override { ASSERT_FALSE(bad_message); ASSERT_FALSE(HasResponse()); response_.reset(new bool); -- cgit v1.1