diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 23:08:02 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 23:08:02 +0000 |
commit | 2fdc86af6441d62cf6f3af049ac4cab1984d5323 (patch) | |
tree | 4a548a889f1c261676bdd4b6ccbca4255cea1c5e /base/test | |
parent | 7e7a62b46abc05baaa5e969fd64cff485857c1b6 (diff) | |
download | chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.zip chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.gz chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.bz2 |
Style cleanup in preparation for auto-linting base/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/552004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/test')
-rw-r--r-- | base/test/perf_test_suite.h | 6 | ||||
-rw-r--r-- | base/test/test_file_util.h | 6 | ||||
-rw-r--r-- | base/test/test_suite.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/base/test/perf_test_suite.h b/base/test/perf_test_suite.h index eed3cfc..896659b 100644 --- a/base/test/perf_test_suite.h +++ b/base/test/perf_test_suite.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef BASE_PERF_TEST_SUITE_H_ -#define BASE_PERF_TEST_SUITE_H_ +#ifndef BASE_TEST_PERF_TEST_SUITE_H_ +#define BASE_TEST_PERF_TEST_SUITE_H_ #include "base/command_line.h" #include "base/debug_util.h" @@ -48,4 +48,4 @@ class PerfTestSuite : public TestSuite { } }; -#endif // BASE_PERF_TEST_SUITE_H_ +#endif // BASE_TEST_PERF_TEST_SUITE_H_ diff --git a/base/test/test_file_util.h b/base/test/test_file_util.h index e9e888e..fc1c4d5 100644 --- a/base/test/test_file_util.h +++ b/base/test/test_file_util.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef BASE_TEST_FILE_UTIL_H_ -#define BASE_TEST_FILE_UTIL_H_ +#ifndef BASE_TEST_TEST_FILE_UTIL_H_ +#define BASE_TEST_TEST_FILE_UTIL_H_ // File utility functions used only by tests. @@ -33,4 +33,4 @@ bool CopyRecursiveDirNoCache(const FilePath& source_dir, } // namespace file_util -#endif // BASE_TEST_FILE_UTIL_H_ +#endif // BASE_TEST_TEST_FILE_UTIL_H_ diff --git a/base/test/test_suite.h b/base/test/test_suite.h index c738518..2c491c2 100644 --- a/base/test/test_suite.h +++ b/base/test/test_suite.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef BASE_TEST_SUITE_H_ -#define BASE_TEST_SUITE_H_ +#ifndef BASE_TEST_TEST_SUITE_H_ +#define BASE_TEST_TEST_SUITE_H_ // Defines a basic test suite framework for running gtest based tests. You can // instantiate this class in your main function and call its Run method to run @@ -229,4 +229,4 @@ class TestSuite { base::AtExitManager at_exit_manager_; }; -#endif // BASE_TEST_SUITE_H_ +#endif // BASE_TEST_TEST_SUITE_H_ |