summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/task.h b/base/task.h
index e1c1dd0..9053c1a 100644
--- a/base/task.h
+++ b/base/task.h
@@ -66,7 +66,7 @@ class CancelableTask : public Task {
//
// // The factories are not thread safe, so always invoke on
// // |MessageLoop::current()|.
-// MessageLoop::current()->PostTask(FROM_HERE,
+// MessageLoop::current()->PostDelayedTask(FROM_HERE,
// some_method_factory_.NewRunnableMethod(&MyClass::SomeMethod),
// kSomeMethodDelayMS);
// }