| Index: google_apis/google_api_keys_unittest.cc
|
| diff --git a/google_apis/google_api_keys_unittest.cc b/google_apis/google_api_keys_unittest.cc
|
| index e18cff52f184d057ca4dddf4f420172bedc64247..e8891793e79f3472c7f89c71d73a3f0bff760ecc 100644
|
| --- a/google_apis/google_api_keys_unittest.cc
|
| +++ b/google_apis/google_api_keys_unittest.cc
|
| @@ -66,7 +66,7 @@ class GoogleAPIKeysTest : public testing::Test {
|
| env_cache_[10].variable_name = "GOOGLE_DEFAULT_CLIENT_SECRET";
|
| }
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| // Unset all environment variables that can affect these tests,
|
| // for the duration of the tests.
|
| for (size_t i = 0; i < arraysize(env_cache_); ++i) {
|
| @@ -80,7 +80,7 @@ class GoogleAPIKeysTest : public testing::Test {
|
| }
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| // Restore environment.
|
| for (size_t i = 0; i < arraysize(env_cache_); ++i) {
|
| EnvironmentCache& cache = env_cache_[i];
|
|
|