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

Unified Diff: base/tracked_objects.cc

Issue 593084: Fix up some style guide violations wrt aligning function arguments. (Closed)
Patch Set: Created 10 years, 10 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
« no previous file with comments | « base/task.h ('k') | base/weak_ptr_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/tracked_objects.cc
diff --git a/base/tracked_objects.cc b/base/tracked_objects.cc
index bc259a209e56ee0da5252b37e0f899919b7c6254..3085816119eb497e513eb75a9e5fa2b8183db34f 100644
--- a/base/tracked_objects.cc
+++ b/base/tracked_objects.cc
@@ -352,8 +352,8 @@ void ThreadData::RunOnAllThreads(void (*function)()) {
HANDLE completion_handle = CreateEvent(NULL, false, false, NULL);
// Tell all other threads to run.
for (size_t i = 0; i < message_loops.size(); ++i)
- message_loops[i]->PostTask(FROM_HERE,
- new RunTheStatic(function, completion_handle, counter));
+ message_loops[i]->PostTask(
+ FROM_HERE, new RunTheStatic(function, completion_handle, counter));
// Also run Task on our thread.
RunTheStatic local_task(function, completion_handle, counter);
« no previous file with comments | « base/task.h ('k') | base/weak_ptr_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698