| Index: net/base/sdch_dictionary_fetcher.cc
|
| diff --git a/net/base/sdch_dictionary_fetcher.cc b/net/base/sdch_dictionary_fetcher.cc
|
| index 8d08b9a678afabacd828ee0b8efb70989362fabf..7e2e000e86cf48f804e4fca6d04e5782b56e9d70 100644
|
| --- a/net/base/sdch_dictionary_fetcher.cc
|
| +++ b/net/base/sdch_dictionary_fetcher.cc
|
| @@ -23,9 +23,8 @@ const int kBufferSize = 4096;
|
|
|
| namespace net {
|
|
|
| -SdchDictionaryFetcher::SdchDictionaryFetcher(
|
| - SdchFetcher::Delegate* consumer,
|
| - URLRequestContext* context)
|
| +SdchDictionaryFetcher::SdchDictionaryFetcher(SdchFetcher::Delegate* consumer,
|
| + URLRequestContext* context)
|
| : next_state_(STATE_NONE),
|
| in_loop_(false),
|
| consumer_(consumer),
|
| @@ -158,8 +157,8 @@ int SdchDictionaryFetcher::DoDispatchRequest(int rv) {
|
| return OK;
|
| }
|
|
|
| - current_request_ = context_->CreateRequest(
|
| - fetch_queue_.front(), IDLE, this, NULL);
|
| + current_request_ =
|
| + context_->CreateRequest(fetch_queue_.front(), IDLE, this, NULL);
|
| current_request_->SetLoadFlags(LOAD_DO_NOT_SEND_COOKIES |
|
| LOAD_DO_NOT_SAVE_COOKIES);
|
| buffer_ = new IOBuffer(kBufferSize);
|
| @@ -209,8 +208,8 @@ int SdchDictionaryFetcher::DoRead(int rv) {
|
| // without a promise to invoke the callback at some point in the future,
|
| // so the request is failed.
|
| SdchManager::SdchErrorRecovery(SdchManager::DICTIONARY_FETCH_READ_FAILED);
|
| - DLOG(FATAL) <<
|
| - "URLRequest::Read() returned false without IO pending or error!";
|
| + DLOG(FATAL)
|
| + << "URLRequest::Read() returned false without IO pending or error!";
|
| return ERR_FAILED;
|
| }
|
|
|
|
|