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

Unified Diff: base/observer_list_unittest.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/observer_list_threadsafe.h ('k') | base/task.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/observer_list_unittest.cc
diff --git a/base/observer_list_unittest.cc b/base/observer_list_unittest.cc
index 3f5ff0adbc4eb2f9b41675e59448df35dc458da5..79af96a1d977342a026f70cabc79fa4f73fba1d0 100644
--- a/base/observer_list_unittest.cc
+++ b/base/observer_list_unittest.cc
@@ -107,8 +107,8 @@ class AddRemoveThread : public PlatformThread::Delegate,
void ThreadMain() {
loop_ = new MessageLoop(); // Fire up a message loop.
- loop_->PostTask(FROM_HERE,
- factory_->NewRunnableMethod(&AddRemoveThread::AddTask));
+ loop_->PostTask(
+ FROM_HERE, factory_->NewRunnableMethod(&AddRemoveThread::AddTask));
loop_->Run();
//LOG(ERROR) << "Loop 0x" << std::hex << loop_ << " done. " <<
// count_observes_ << ", " << count_addtask_;
« no previous file with comments | « base/observer_list_threadsafe.h ('k') | base/task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698