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

Unified Diff: components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc
diff --git a/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc b/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc
index 2187da6149622f69da04ba6c22d3f6e8d3c11833..df422a3e55d4c85bbe984dfdbee194b3aac024fc 100644
--- a/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc
+++ b/components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc
@@ -52,16 +52,14 @@ class WalletSigninHelperTest : public testing::Test {
WalletSigninHelperTest()
: request_context_(new net::TestURLRequestContextGetter(
base::MessageLoopProxy::current())) {}
- virtual ~WalletSigninHelperTest() {}
+ ~WalletSigninHelperTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
signin_helper_.reset(
new WalletSigninHelper(&mock_delegate_, request_context_.get()));
}
- virtual void TearDown() override {
- signin_helper_.reset();
- }
+ void TearDown() override { signin_helper_.reset(); }
// Sets up a response for the mock URLFetcher and completes the request.
void SetUpFetcherResponseAndCompleteRequest(

Powered by Google App Engine
This is Rietveld 408576698