summaryrefslogtreecommitdiffstats
path: root/base/task.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/task.h')
-rw-r--r--base/task.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/task.h b/base/task.h
index cbb8c99..de5da77 100644
--- a/base/task.h
+++ b/base/task.h
@@ -66,7 +66,8 @@ class CancelableTask : public Task {
//
// // The factories are not thread safe, so always invoke on
// // |MessageLoop::current()|.
-// MessageLoop::current()->PostDelayedTask(FROM_HERE,
+// MessageLoop::current()->PostDelayedTask(
+// FROM_HERE,
// some_method_factory_.NewRunnableMethod(&MyClass::SomeMethod),
// kSomeMethodDelayMS);
// }