| Index: net/disk_cache/disk_cache_test_util.h
|
| diff --git a/net/disk_cache/disk_cache_test_util.h b/net/disk_cache/disk_cache_test_util.h
|
| index ad6b6ac94145cf3875525ee432fd4ff457dcc796..435951d33b47b0d4d99413f8a7b46b8e710af7c8 100644
|
| --- a/net/disk_cache/disk_cache_test_util.h
|
| +++ b/net/disk_cache/disk_cache_test_util.h
|
| @@ -26,7 +26,8 @@ void CacheTestFillBuffer(char* buffer, size_t len, bool no_nulls);
|
| std::string GenerateKey(bool same_length);
|
|
|
| // Returns true if the cache is not corrupt.
|
| -bool CheckCacheIntegrity(const base::FilePath& path, bool new_eviction,
|
| +bool CheckCacheIntegrity(const base::FilePath& path,
|
| + bool new_eviction,
|
| uint32 mask);
|
|
|
| // -----------------------------------------------------------------------
|
| @@ -44,9 +45,7 @@ class MessageLoopHelper {
|
|
|
| // True if a given callback was called more times than it expected.
|
| bool callback_reused_error() const { return callback_reused_error_; }
|
| - void set_callback_reused_error(bool error) {
|
| - callback_reused_error_ = error;
|
| - }
|
| + void set_callback_reused_error(bool error) { callback_reused_error_ = error; }
|
|
|
| int callbacks_called() const { return callbacks_called_; }
|
| // Report that a callback was called. Each callback that will be waited on
|
|
|