Fix remaining styling and compiling issues
Bug: 163153182
Test: FEATURES=test emerge-reef update_engine
Change-Id: I12d95920946fee1866f721783f16795c1ad4c2d9
diff --git a/libcurl_http_fetcher.cc b/libcurl_http_fetcher.cc
index f8aed7c..bce0920 100644
--- a/libcurl_http_fetcher.cc
+++ b/libcurl_http_fetcher.cc
@@ -33,7 +33,6 @@
#include <base/strings/stringprintf.h>
#include <base/threading/thread_task_runner_handle.h>
-
#ifdef __ANDROID__
#include <cutils/qtaguid.h>
#include <private/android_filesystem_config.h>
@@ -464,12 +463,12 @@
// possible to watch file descriptors. Just poll it later. This usually
// happens if brillo::FakeMessageLoop is used.
if (!base::ThreadTaskRunnerHandle::IsSet()) {
- MessageLoop::current()->PostDelayedTask(
- FROM_HERE,
- base::Bind(&LibcurlHttpFetcher::CurlPerformOnce,
- base::Unretained(this)),
- TimeDelta::FromSeconds(1));
- return;
+ MessageLoop::current()->PostDelayedTask(
+ FROM_HERE,
+ base::Bind(&LibcurlHttpFetcher::CurlPerformOnce,
+ base::Unretained(this)),
+ TimeDelta::FromSeconds(1));
+ return;
}
#endif
SetupMessageLoopSources();