diff options
Diffstat (limited to 'net/http/http_cache_unittest.cc')
-rw-r--r-- | net/http/http_cache_unittest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/http/http_cache_unittest.cc b/net/http/http_cache_unittest.cc index 3552c67..19c690c 100644 --- a/net/http/http_cache_unittest.cc +++ b/net/http/http_cache_unittest.cc @@ -40,9 +40,8 @@ class DeleteCacheCompletionCallback : public net::TestCompletionCallbackBase { public: explicit DeleteCacheCompletionCallback(MockHttpCache* cache) : cache_(cache), - ALLOW_THIS_IN_INITIALIZER_LIST(callback_( - base::Bind(&DeleteCacheCompletionCallback::OnComplete, - base::Unretained(this)))) { + callback_(base::Bind(&DeleteCacheCompletionCallback::OnComplete, + base::Unretained(this))) { } const net::CompletionCallback& callback() const { return callback_; } |