Index: src/log.h |
=================================================================== |
--- src/log.h (revision 10367) |
+++ src/log.h (working copy) |
@@ -150,14 +150,14 @@ |
#undef DECLARE_ENUM |
// Acquires resources for logging if the right flags are set. |
- bool Setup(); |
+ bool SetUp(); |
void EnsureTickerStarted(); |
void EnsureTickerStopped(); |
Sampler* sampler(); |
- // Frees resources acquired in Setup. |
+ // Frees resources acquired in SetUp. |
// When a temporary file is used for the log, returns its stream descriptor, |
// leaving the file open. |
FILE* TearDown(); |
@@ -411,7 +411,7 @@ |
NameMap* address_to_name_map_; |
// Guards against multiple calls to TearDown() that can happen in some tests. |
- // 'true' between Setup() and TearDown(). |
+ // 'true' between SetUp() and TearDown(). |
bool is_initialized_; |
// Support for 'incremental addresses' in compressed logs: |