Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: net/base/sdch_dictionary_fetcher.cc

Issue 649763002: git cl format the second third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698