summaryrefslogtreecommitdiffstats
path: root/google_apis/google_api_keys_unittest.cc
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 13:29:33 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 13:29:33 +0000
commit59e6b80fe7242316d3abb6455d7cf0dc523c18f2 (patch)
treecd76c4f3c8d3bde1cc201bd7be603c796f58412c /google_apis/google_api_keys_unittest.cc
parent0e9283c5d5b9079c6b02c9426f07d2999fb4f7fb (diff)
downloadchromium_src-59e6b80fe7242316d3abb6455d7cf0dc523c18f2.zip
chromium_src-59e6b80fe7242316d3abb6455d7cf0dc523c18f2.tar.gz
chromium_src-59e6b80fe7242316d3abb6455d7cf0dc523c18f2.tar.bz2
Linux/ChromeOS Chromium style checker cleanup, assorted top directories edition.
Automated clean up of style checker errors that were missed due to the plugin not being executed on implementation files. BUG=115047 TBR=miket Review URL: https://chromiumcodereview.appspot.com/12245003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181292 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_apis/google_api_keys_unittest.cc')
-rw-r--r--google_apis/google_api_keys_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/google_apis/google_api_keys_unittest.cc b/google_apis/google_api_keys_unittest.cc
index 8d1c036..ab50d3f 100644
--- a/google_apis/google_api_keys_unittest.cc
+++ b/google_apis/google_api_keys_unittest.cc
@@ -63,7 +63,7 @@ class GoogleAPIKeysTest : public testing::Test {
env_cache_[8].variable_name = "GOOGLE_DEFAULT_CLIENT_SECRET";
}
- void SetUp() {
+ virtual void SetUp() {
// 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) {
@@ -77,7 +77,7 @@ class GoogleAPIKeysTest : public testing::Test {
}
}
- void TearDown() {
+ virtual void TearDown() {
// Restore environment.
for (size_t i = 0; i < arraysize(env_cache_); ++i) {
EnvironmentCache& cache = env_cache_[i];