| Index: net/http/http_cache_transaction.cc
|
| diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
|
| index bf2e0f3e11db0e11b16eb709737b9392bd8fb7c8..90c6e1ef527cb4f769bb12f2c9dbe77c54738b11 100644
|
| --- a/net/http/http_cache_transaction.cc
|
| +++ b/net/http/http_cache_transaction.cc
|
| @@ -175,7 +175,6 @@ HttpCache::Transaction::Transaction(
|
| cache_(cache->AsWeakPtr()),
|
| entry_(NULL),
|
| new_entry_(NULL),
|
| - network_trans_(NULL),
|
| new_response_(NULL),
|
| mode_(NONE),
|
| target_state_(STATE_NONE),
|
| @@ -194,8 +193,8 @@ HttpCache::Transaction::Transaction(
|
| effective_load_flags_(0),
|
| write_len_(0),
|
| weak_factory_(this),
|
| - io_callback_(base::Bind(
|
| - &Transaction::OnIOComplete, weak_factory_.GetWeakPtr())),
|
| + io_callback_(base::Bind(&Transaction::OnIOComplete,
|
| + weak_factory_.GetWeakPtr())),
|
| transaction_pattern_(PATTERN_UNDEFINED),
|
| defer_cache_sensitivity_delay_(false),
|
| transaction_delegate_(transaction_delegate) {
|
|
|