| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_TEST_TEST_UTIL_H_ | 5 #ifndef BASE_TEST_TEST_UTIL_H_ |
| 6 #define BASE_TEST_TEST_UTIL_H_ | 6 #define BASE_TEST_TEST_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // Generic utilities used only by tests. | 9 // Generic utilities used only by tests. |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 std::string old_locale_; | 32 std::string old_locale_; |
| 33 | 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(ScopedSetLocale); | 34 DISALLOW_COPY_AND_ASSIGN(ScopedSetLocale); |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 } // namespace base | 39 } // namespace base |
| 40 | 40 |
| 41 #endif // BASE_TEST_TEST_UTIL_H_ | 41 #endif // BASE_TEST_TEST_UTIL_H_ |
| OLD | NEW |