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

Unified Diff: net/disk_cache/blockfile/in_flight_io.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/disk_cache/blockfile/in_flight_io.cc
diff --git a/net/disk_cache/blockfile/in_flight_io.cc b/net/disk_cache/blockfile/in_flight_io.cc
index 6e9485d5f1102f2327972b0823e1de16c4c06779..53f8ae74b123eae70b5f7d3af622354909bf1f55 100644
--- a/net/disk_cache/blockfile/in_flight_io.cc
+++ b/net/disk_cache/blockfile/in_flight_io.cc
@@ -35,7 +35,8 @@ BackgroundIO::~BackgroundIO() {
InFlightIO::InFlightIO()
: callback_thread_(base::MessageLoopProxy::current()),
- running_(false), single_thread_(false) {
+ running_(false),
+ single_thread_(false) {
}
InFlightIO::~InFlightIO() {
@@ -75,9 +76,8 @@ void InFlightIO::OnIOComplete(BackgroundIO* operation) {
}
#endif
- callback_thread_->PostTask(FROM_HERE,
- base::Bind(&BackgroundIO::OnIOSignalled,
- operation));
+ callback_thread_->PostTask(
+ FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation));
operation->io_completed()->Signal();
}

Powered by Google App Engine
This is Rietveld 408576698